summaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2024-09-21 11:30:54 +0800
committerSadeep Madurange <sadeep@asciimx.com>2024-09-21 11:30:54 +0800
commit39663fc225133fd2abf1fc818e35c371fb51b1a9 (patch)
treef74810f1504cc94c6fd16cd225cbfa3cc780fbe0 /readme.txt
parent770afa91e544dddd992fc26c530a84cf34cb0697 (diff)
downloadesp32-inmp441-driver-39663fc225133fd2abf1fc818e35c371fb51b1a9.tar.gz
Readme.HEADmaster
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/readme.txt b/readme.txt
new file mode 100644
index 0000000..75a204d
--- /dev/null
+++ b/readme.txt
@@ -0,0 +1,22 @@
+ESP32-S3 CONFIGURATION
+
+ 1. Rename the esp32/main/Kconfig.projbuild.example to
+ esp32/main/Kconfig.projbuild.example, and fill in the config values.
+ 2. Run the following command to change the build target to ESP32-S3.
+ $ idf.py set-target esp32s3
+ 3. Run the following command to open the menuconfig program and update
+ config values like the flash size and serial flash speed.
+ $ idf.py menuconfig
+
+Now you can build and flash the program like any other ESP32 program.
+
+UDP SERVER
+
+To start receving audio capture data from the MCU, use the recv.py start a UDP
+server on a machine connected to the same access point as the MCU:
+
+ $ python3 recv.py
+
+The UDP server collects data up to ~30 seconds and saves as a wav file in the
+same directory.
+