-
Notifications
You must be signed in to change notification settings - Fork 7.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update aes.h #3
Closed
Closed
Update aes.h #3
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
found small mistake in it we have: PROVIDE ( ets_aes_crypt = 0x4005c9b8 ); PROVIDE ( ets_aes_disable = 0x4005c8f8 ); PROVIDE ( ets_aes_enable = 0x4005c8cc ); PROVIDE ( ets_aes_set_endian = 0x4005c928 ); PROVIDE ( ets_aes_setkey_dec = 0x4005c994 ); PROVIDE ( ets_aes_setkey_enc = 0x4005c97c );
igrr
added a commit
that referenced
this pull request
Aug 29, 2016
[Github] Fix prototype for ets_aes_set_endian #3 Original description: > > found small mistake in it > > we have: > ``` PROVIDE ( ets_aes_crypt = 0x4005c9b8 ); PROVIDE ( ets_aes_disable = 0x4005c8f8 ); PROVIDE ( ets_aes_enable = 0x4005c8cc ); PROVIDE ( ets_aes_set_endian = 0x4005c928 ); PROVIDE ( ets_aes_setkey_dec = 0x4005c994 ); PROVIDE ( ets_aes_setkey_enc = 0x4005c97c ); ``` See merge request !29
Thanks, this is now merged into master. |
Closed
igrr
pushed a commit
that referenced
this pull request
Dec 5, 2018
…t module 1. Fix interrupt watchdog timeout in bluetooth "btdm_bb_isr" 2. Fix BLE assert(512) or assert(1536) in rwble.c at line 222 3. Update librtc.a to fix BLE assert(512) in rwble.c at line 222 The #1 and #2 occurs random. The #3 bug occurs in certain scenario: 1. If Wifi start softap and BLE is working 2. If wifi start station, but do not use normal station operation, such as just use espnow, while BLE is working 3. Any other scenario, that wifi works without use software coexist operation, while BLE is working(such as do advertising and ...) 4. update libcoexist.a version to v1.1.2
igrr
pushed a commit
that referenced
this pull request
Dec 5, 2018
…t module 1. Fix interrupt watchdog timeout in bluetooth "btdm_bb_isr" 2. Fix BLE assert(512) or assert(1536) in rwble.c at line 222 3. Update librtc.a to fix BLE assert(512) in rwble.c at line 222 The #1 and #2 occurs random. The #3 bug occurs in certain scenario: 1. If Wifi start softap and BLE is working 2. If wifi start station, but do not use normal station operation, such as just use espnow, while BLE is working 3. Any other scenario, that wifi works without use software coexist operation, while BLE is working(such as do advertising and ...) 4. update libcoexist.a version to v1.1.2
igrr
pushed a commit
that referenced
this pull request
Dec 7, 2018
…t module 1. Fix interrupt watchdog timeout in bluetooth "btdm_bb_isr" 2. Fix BLE assert(512) or assert(1536) in rwble.c at line 222 3. Update librtc.a to fix BLE assert(512) in rwble.c at line 222 The #1 and #2 occurs random. The #3 bug occurs in certain scenario: 1. If Wifi start softap and BLE is working 2. If wifi start station, but do not use normal station operation, such as just use espnow, while BLE is working 3. Any other scenario, that wifi works without use software coexist operation, while BLE is working(such as do advertising and ...) 4. update libcoexist.a version to v1.1.2
tim-nordell-nimbelink
added a commit
to tim-nordell-nimbelink/esp-idf
that referenced
this pull request
Feb 28, 2019
It's possible for esp_pm_impl_isr_hook(...) to be nested due to the fact that interrupts are nested on the ESP32. To fix this we need to place the acquiring of the lock into a critical section to ensure it does not get nested on the system, otherwise the system will never release the idle lock when this occurs and will not go into lower power states. A sample backtrace encountering this (the code was instrumented to go into a while(1) loop when the condition was hit to get this backtrace) from commit d7a7a68: #0 leave_idle () at esp-idf/components/esp32/pm_esp32.c:444 espressif#1 0x4008143a in esp_pm_impl_isr_hook () at esp-idf/components/esp32/pm_esp32.c:473 espressif#2 0x40082750 in _xt_medint2 () at esp-idf/components/freertos/xtensa_vectors.S:1243 espressif#3 0x4000bff0 in ?? () espressif#4 0x40090bb0 in vTaskExitCritical (mux=0x3ffbd230) at esp-idf/components/freertos/tasks.c:4304 espressif#5 0x40081758 in esp_pm_lock_acquire (handle=0x3ffbd218) at esp-idf/components/esp32/pm_locks.c:126 espressif#6 0x40081399 in leave_idle () at esp-idf/components/esp32/pm_esp32.c:440 espressif#7 0x4008143a in esp_pm_impl_isr_hook () at esp-idf/components/esp32/pm_esp32.c:473 espressif#8 0x400826b8 in _xt_lowint1 () at esp-idf/components/freertos/xtensa_vectors.S:1154 espressif#9 0x400d14b0 in esp_pm_impl_waiti () at esp-idf/components/esp32/pm_esp32.c:483 espressif#10 0x400d2c77 in esp_vApplicationIdleHook () at esp-idf/components/esp32/freertos_hooks.c:63 espressif#11 0x40091008 in prvIdleTask (pvParameters=0x0) at esp-idf/components/freertos/tasks.c:3412 espressif#12 0x40090344 in vPortTaskWrapper (pxCode=0x40090ffc <prvIdleTask>, pvParameters=0x0) at esp-idf/components/freertos/port.c:143 Signed-off-by: Tim Nordell <[email protected]>
1 task
ghost
mentioned this pull request
Jul 8, 2019
4 tasks
This was referenced Nov 16, 2021
espressif-bot
added
Status: In Progress
Work is in progress
and removed
Status: Opened
Issue is new
labels
May 5, 2022
3 tasks
3 tasks
3 tasks
3 tasks
3 tasks
3 tasks
3 tasks
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
found small mistake in it
we have:
PROVIDE ( ets_aes_crypt = 0x4005c9b8 );
PROVIDE ( ets_aes_disable = 0x4005c8f8 );
PROVIDE ( ets_aes_enable = 0x4005c8cc );
PROVIDE ( ets_aes_set_endian = 0x4005c928 );
PROVIDE ( ets_aes_setkey_dec = 0x4005c994 );
PROVIDE ( ets_aes_setkey_enc = 0x4005c97c );