Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. boardsurfer
    B
    • Continue chat with boardsurfer
    • Start new chat with boardsurfer
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    boardsurfer

    @boardsurfer

    0
    Reputation
    3
    Posts
    220
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    boardsurfer Follow

    Posts made by boardsurfer

    • RE: CoreInk SD card in Micropython

      Has anyone had success with MicroPython SD card access on the CoreInk? I just installed the firmware that seems to be about 1 week old, but all I get is different error messages when trying to mount the SD card. With slot 1 or 2, I get:

      E (8624) sdmmc_common: sdmmc_init_OCR: send_op_cond(1) returned 0x107

      With slot 2, I get:

      E (8049) spi_master: spi_bus_add_device(373): host not initialized
      E (8052) sdmmc_io: sdmmc_io_reset: unexpected return: 0x102

      With slot 3, I only get OSError(16,), without additional info.
      If anyone has gotten the SD card to work on the CoreInk, which slot and pins do you use? Is there any other initialization necessary?

      --
      Correction: it seems the only reason I get different error message is because I commented out sd.info(). With sd.info(), I still get the original error. So still no SD card support at all?

      posted in Modules
      B
      boardsurfer
    • RE: CoreInk SD card in Micropython

      No support for M5stack products at all anymore, it seems? Time to look for alternatives.

      posted in Modules
      B
      boardsurfer
    • CoreInk SD card in Micropython

      I need to hook up an SD card to a CoreInk unit using MicroPython. I have tried code that works perfectly with an ESP32 WROVER, as well as code from the boot.py file from an M5stack-CORE, but nothing works on the CoreInk. For example, the code:
      import machine, os
      sd = machine.SDCard(slot=3, miso=34, mosi=23, sck=18, cs=14)
      sd.info()
      os.mount(sd, '/sd')

      gives the error:
      OSError: (110, 'ESP_ERR_TIMEOUT')

      posted in Modules
      B
      boardsurfer