Skip to content

Commit 3c64523

Browse files
committed
Updated release compile config for performance
1 parent 532b062 commit 3c64523

6 files changed

+6729
-7
lines changed

create_release_zip.ps1

+12-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ mkdir $release_foldername
88
cp .\flashing_instructions.txt $release_foldername
99

1010
rm -Recurse .\build
11-
idf.py set-target esp32 build
11+
idf.py set-target esp32
12+
cp .\sdkconfig_esp32 .\sdkconfig
13+
idf.py build
1214
mkdir $release_foldername\esp32
1315
cp .\build\flash_args $release_foldername\esp32\flash_args.txt
1416
cp .\build\db_esp32.bin $release_foldername\esp32
@@ -17,7 +19,9 @@ cp .\build\www.bin $release_foldername\esp32
1719
cp .\build\partition_table\partition-table.bin $release_foldername\esp32
1820

1921
rm -Recurse .\build
20-
idf.py set-target esp32s2 build
22+
idf.py set-target esp32s2
23+
cp .\sdkconfig_s2 .\sdkconfig
24+
idf.py build
2125
mkdir $release_foldername\esp32s2
2226
cp .\build\flash_args $release_foldername\esp32s2\flash_args.txt
2327
cp .\build\db_esp32.bin $release_foldername\esp32s2
@@ -26,7 +30,9 @@ cp .\build\www.bin $release_foldername\esp32s2
2630
cp .\build\partition_table\partition-table.bin $release_foldername\esp32s2
2731

2832
rm -Recurse .\build
29-
idf.py set-target esp32s3 build
33+
idf.py set-target esp32s3
34+
cp .\sdkconfig_s3 .\sdkconfig
35+
idf.py build
3036
mkdir $release_foldername\esp32s3
3137
cp .\build\flash_args $release_foldername\esp32s3\flash_args.txt
3238
cp .\build\db_esp32.bin $release_foldername\esp32s3
@@ -35,7 +41,9 @@ cp .\build\www.bin $release_foldername\esp32s3
3541
cp .\build\partition_table\partition-table.bin $release_foldername\esp32s3
3642

3743
rm -Recurse .\build
38-
idf.py set-target esp32c3 build
44+
idf.py set-target esp32c3
45+
cp .\sdkconfig_c3 .\sdkconfig
46+
idf.py build
3947
mkdir $release_foldername\esp32c3
4048
cp .\build\flash_args $release_foldername\esp32c3\flash_args.txt
4149
cp .\build\db_esp32.bin $release_foldername\esp32c3

main/main.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ uint8_t DB_UART_PIN_TX = GPIO_NUM_0;
5757
uint8_t DB_UART_PIN_RX = GPIO_NUM_0;
5858
uint8_t DB_UART_PIN_RTS = GPIO_NUM_0;
5959
uint8_t DB_UART_PIN_CTS = GPIO_NUM_0;
60-
uint8_t DB_UART_RTS_THRESH = 100;
60+
uint8_t DB_UART_RTS_THRESH = 64;
6161

62-
int32_t DB_UART_BAUD_RATE = 115200;
62+
int32_t DB_UART_BAUD_RATE = 57600;
6363
uint16_t TRANSPARENT_BUF_SIZE = 64;
64-
uint8_t LTM_FRAME_NUM_BUFFER = 1;
64+
uint8_t LTM_FRAME_NUM_BUFFER = 2;
6565
uint8_t MSP_LTM_SAMEPORT = 0;
6666
int station_rssi = 0;
6767

0 commit comments

Comments
 (0)