File tree 2 files changed +2
-9
lines changed
2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -128,14 +128,14 @@ extern "C" void optimistic_yield(uint32_t interval_us) {
128
128
}
129
129
}
130
130
131
- extern " C" void ets_intr_lock_nest () {
131
+ extern " C" void ets_intr_lock () {
132
132
if (ets_intr_lock_stack_ptr < ETS_INTR_LOCK_NEST_MAX)
133
133
ets_intr_lock_stack[ets_intr_lock_stack_ptr++] = xt_rsil (3 );
134
134
else
135
135
xt_rsil (3 );
136
136
}
137
137
138
- extern " C" void ets_intr_unlock_nest () {
138
+ extern " C" void ets_intr_unlock () {
139
139
if (ets_intr_lock_stack_ptr > 0 )
140
140
xt_wsr_ps (ets_intr_lock_stack[--ets_intr_lock_stack_ptr]);
141
141
else
Original file line number Diff line number Diff line change @@ -16,10 +16,3 @@ xtensa-lx106-elf-objcopy --redefine-sym default_hostname=wifi_station_default_ho
16
16
xtensa-lx106-elf-objcopy --redefine-sym default_hostname=wifi_station_default_hostname eagle_lwip_if.o
17
17
xtensa-lx106-elf-ar r libmain.a eagle_lwip_if.o user_interface.o
18
18
rm -f eagle_lwip_if.o user_interface.o
19
-
20
- # Replace use of ROM ets_intr_(un)lock with nestable ets_intr_(un)lock_nest
21
- for f in libmain.a libpp.a libnet80211.a; do
22
- xtensa-lx106-elf-objcopy --redefine-sym ets_intr_lock=ets_intr_lock_nest $f ;
23
- xtensa-lx106-elf-objcopy --redefine-sym ets_intr_unlock=ets_intr_unlock_nest $f ;
24
- done
25
-
You can’t perform that action at this time.
0 commit comments