Skip to content

Commit 758203c

Browse files
committed
Update 1.4.5
1 parent df1ef2d commit 758203c

20 files changed

+55
-5
lines changed

UpdateLog.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
### v1.4.4
1+
### v1.4.5
22

3-
* Add: PLUS and GOPLUS module
4-
* Add: Accel Unit
5-
* Add: CardKB Hat
3+
* Add: Burner wifi set
4+
* Add: ATOM support
1.87 MB
Binary file not shown.
22.2 KB
Binary file not shown.
2 MB
Binary file not shown.

firmware_ATOM/flash.sh

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#!/bin/bash
2+
3+
machine=""
4+
port=""
5+
6+
unameOut="$(uname -s)"
7+
case "${unameOut}" in
8+
Linux*) machine=Linux;;
9+
Darwin*) machine=MacOS;;
10+
CYGWIN*) machine=Win;;
11+
MINGW*) machine=Win;;
12+
*) machine=UNKNOWN
13+
esac
14+
15+
# echo ${machine}
16+
17+
if [ "${machine}" == "Linux" ]; then
18+
echo "linux"
19+
port="ttyUSB0"
20+
fi
21+
22+
if [ "${machine}" == "MacOS" ]; then
23+
echo "MacOS"
24+
port="tty.SLAB_USBtoUART"
25+
fi
26+
27+
esptool.py --chip esp32 --port /dev/${port} --baud 921600 --before default_reset --after no_reset write_flash -z \
28+
--flash_mode dio --flash_freq 40m --flash_size detect \
29+
0x1000 bootloader_0x1000.bin \
30+
0x8000 partitions_0x8000.bin \
31+
0xf000 phy_init_data_0xf000.bin \
32+
0x10000 application_0x10000.bin \
33+
0x200000 fatfsImg_0x200000.img
3 KB
Binary file not shown.
144 Bytes
Binary file not shown.
288 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-4 KB
Binary file not shown.

0 commit comments

Comments
 (0)