Skip to content

Commit

Permalink
ci: disable logging on serial, to get USB logging
Browse files Browse the repository at this point in the history
  • Loading branch information
georgik committed Jan 31, 2024
1 parent b72b666 commit fccaf03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-python-circuitpython-hello-world.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
BINARIES[esp32s3]="adafruit-circuitpython-espressif_esp32s3_devkitm_1_n8-en_US-8.2.9.bin"
#for TARGET in esp32 esp32s2 esp32s3 esp32c3 esp32c6 esp32h2; do
for TARGET in esp32s2 esp32s3; do
for TARGET in esp32 esp32s2 esp32s3; do
DOWNLOAD_PREFIX=${URL_PREFIXES[$TARGET]}
RUNTIME_BIN=${BINARIES[$TARGET]}
Expand Down Expand Up @@ -133,9 +133,9 @@ jobs:
sudo cp code.py mountpoint/
sudo umount mountpoint
cp ${RUNTIME_BIN} ${OUTPUT_BIN}
# cp ${RUNTIME_BIN} ${OUTPUT_BIN}
echo esptool.py --chip ${TARGET} merge_bin -o ${OUTPUT_BIN} --flash_mode dio --flash_size 4MB 0x00 ${RUNTIME_BIN} ${USER_FS_OFFSET} circuitpython_fs.img
echo esptool.py --chip ${TARGET} merge_bin -o ${OUTPUT_BIN} --flash_mode dio --flash_size 8MB 0x00 ${RUNTIME_BIN} ${USER_FS_OFFSET} circuitpython_fs.img
file ${OUTPUT_BIN}
esptool.py --chip ${TARGET} merge_bin -o ${OUTPUT_BIN} --flash_mode dio --flash_size 8MB 0x00 ${RUNTIME_BIN} ${USER_FS_OFFSET} circuitpython_fs.img
Expand Down
2 changes: 1 addition & 1 deletion support/wokwi/diagram-esp32s3.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"author": "Juraj Michálek",
"editor": "wokwi",
"parts": [ { "type": "board-esp32-s3-devkitc-1", "id": "esp", "top": 0, "left": 0, "attrs": {} } ],
"connections": [ [ "esp:TX", "$serialMonitor:RX", "", [] ], [ "esp:RX", "$serialMonitor:TX", "", [] ] ],
"connections": [],
"dependencies": {}
}

0 comments on commit fccaf03

Please sign in to comment.