File tree Expand file tree Collapse file tree 7 files changed +724
-8
lines changed Expand file tree Collapse file tree 7 files changed +724
-8
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,11 @@ stages:
41
41
# - chmod +x gen_misc_non_os.sh
42
42
# - ./gen_misc_non_os.sh
43
43
44
- build_at :
44
+ .at_setup_tokens : &at_setup_tokens
45
+ - echo -e "#define CONFIG_AT_1024_1024_TOKEN \"$AT_1024_1024_TOKEN\"" >> include/user_config.h
46
+ - echo -e "#define CONFIG_AT_512_512_TOKEN \"$AT_512_512_TOKEN\"" >> include/user_config.h
47
+
48
+ build_at_1024_1024_u1 :
45
49
<< : *build_template
46
50
artifacts :
47
51
paths :
@@ -51,7 +55,47 @@ build_at:
51
55
script :
52
56
- cp -rf examples/at at
53
57
- cd at
54
- - make COMPILE=gcc BOOT=new APP=1 SPI_SPEED=40 SPI_MODE=QIO SPI_SIZE_MAP=5
58
+ - *at_setup_tokens
59
+ - make COMPILE=gcc BOOT=new APP=1 SPI_SPEED=40 SPI_MODE=QIO SPI_SIZE_MAP=5 AT_ESP_UPGRADE=1
60
+
61
+ build_at_1024_1024_u2 :
62
+ << : *build_template
63
+ artifacts :
64
+ paths :
65
+ - ./bin/upgrade
66
+ - ./bin/*.bin
67
+ expire_in : 6 mos
68
+ script :
69
+ - cp -rf examples/at at
70
+ - cd at
71
+ - *at_setup_tokens
72
+ - make COMPILE=gcc BOOT=new APP=2 SPI_SPEED=40 SPI_MODE=QIO SPI_SIZE_MAP=5 AT_ESP_UPGRADE=1
73
+
74
+ build_at_512_512_u1 :
75
+ << : *build_template
76
+ artifacts :
77
+ paths :
78
+ - ./bin/upgrade
79
+ - ./bin/*.bin
80
+ expire_in : 6 mos
81
+ script :
82
+ - cp -rf examples/at_nano at
83
+ - cd at
84
+ - *at_setup_tokens
85
+ - make COMPILE=gcc BOOT=new APP=1 SPI_SPEED=40 SPI_MODE=QIO SPI_SIZE_MAP=2 AT_ESP_UPGRADE=1
86
+
87
+ build_at_512_512_u2 :
88
+ << : *build_template
89
+ artifacts :
90
+ paths :
91
+ - ./bin/upgrade
92
+ - ./bin/*.bin
93
+ expire_in : 6 mos
94
+ script :
95
+ - cp -rf examples/at_nano at
96
+ - cd at
97
+ - *at_setup_tokens
98
+ - make COMPILE=gcc BOOT=new APP=2 SPI_SPEED=40 SPI_MODE=QIO SPI_SIZE_MAP=2 AT_ESP_UPGRADE=1
55
99
56
100
build_at_espconn :
57
101
<< : *build_template
Original file line number Diff line number Diff line change @@ -127,6 +127,11 @@ CONFIGURATION_DEFINES += \
127
127
-DAT_UPGRADE_SUPPORT
128
128
endif
129
129
130
+ ifeq ($(AT_ESP_UPGRADE ) ,1)
131
+ CONFIGURATION_DEFINES += \
132
+ -DAT_ESP_UPGRADE
133
+ endif
134
+
130
135
ifeq ($(SPI_SIZE_MAP ) ,5)
131
136
CONFIGURATION_DEFINES += -DFLASH_MAP=$(SPI_SIZE_MAP )
132
137
endif
Original file line number Diff line number Diff line change 22
22
*
23
23
*/
24
24
25
- #ifndef __USER_CONFIG_H__
26
- #define __USER_CONFIG_H__
25
+ #pragma once
27
26
27
+ // #define AT_ESP_UPGRADE
28
+
29
+ #ifndef AT_ESP_UPGRADE
28
30
#define AT_CUSTOM_UPGRADE
31
+ #endif
29
32
30
33
#ifdef AT_CUSTOM_UPGRADE
31
34
#ifndef AT_UPGRADE_SUPPORT
37
40
// #define CONFIG_AT_WPA2_ENTERPRISE_COMMAND_ENABLE
38
41
39
42
#define CONFIG_ENABLE_IRAM_MEMORY 1
40
- #endif
43
+
44
+ #define ESP_AT_FW_VERSION "Bin version(Wroom 02):1.7.6"
You can’t perform that action at this time.
0 commit comments