File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
libraries/ESP8266WiFi/src Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ _saveStack: .word 0x00000000
34
34
35
35
36
36
/* void SetThunkStackEnd(unsigned int *end);
37
- *
37
+ *
38
38
* Stores the address of the user-allocated thunking stack (be sure to pass
39
39
* in the *end* of the stack (highest value) since stacks move down on this
40
40
* architecture.
@@ -62,21 +62,21 @@ SetThunkStackEnd:
62
62
.align 4
63
63
thunk_\fcnName:
64
64
addi a1, a1, -16 /* Allocate space for saved registers on stack */
65
-
65
+
66
66
s32i a0, a1, 12 /* Store A0, trounced by calls */
67
67
s32i a15, a1, 8 /* Store A15 (our temporary one) */
68
-
68
+
69
69
movi a15, _saveStack /* Store A1(SP) in temp space */
70
70
s32i a1, a15, 0
71
-
71
+
72
72
movi a15, _stackEnd /* Load A1(SP) with thunk stack */
73
73
l32i.n a1, a15, 0
74
-
74
+
75
75
call0 \fcnName /* Do the call */
76
-
76
+
77
77
movi a15, _saveStack /* Restore A1(SP) */
78
78
l32i.n a1, a15, 0
79
-
79
+
80
80
l32i.n a15, a1, 8 /* Restore the saved registers */
81
81
l32i.n a0, a1, 12
82
82
Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ void WiFiClientSecure::_clearAuthenticationSettings() {
96
96
97
97
98
98
WiFiClientSecure::WiFiClientSecure () : WiFiClient() {
99
- disable_extra4k_at_link_time ();
100
99
_cipher_list = NULL ;
101
100
_cipher_cnt = 0 ;
102
101
_clear ();
You can’t perform that action at this time.
0 commit comments