Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1022 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 1022 Bytes

M5StickC-IDF: an ESP-IDF example for M5StickC

This is a M5StickC version of M5Stack-IDF.

Install

$ git clone --recursive https://github.com/yamanekko/M5StickC-IDF.git

Build and Execution

## update config
$ idf.py menuconfig

## build
$ idf.py build

## transfer to flash
$ idf.py flash

## when you need to change port and baud:
$ idf.py -p /dev/tty.usbserial-9D527BF645A -b 115200 flash

## monitor
$ idf.py -p /dev/tty.usbserial-9D527BF645A -b 115200 monitor

NOTE

  • If you use macOS, you may need to fix ulimit value:
$ ulimit -n 2048