-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(asio): Removes esp_exception and make all examples to use exceptions
The usage of esp_exception header defining the exception handler prevents users to customize the exception treatment. By removing it we allow users that want to run without exceptions to customize the behavior.
- Loading branch information
1 parent
af1f39e
commit a2b1a89
Showing
5 changed files
with
11 additions
and
31 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CONFIG_ESP_MAIN_TASK_STACK_SIZE=8192 | ||
CONFIG_COMPILER_CXX_EXCEPTIONS=y | ||
|
||
# | ||
# Partition Table | ||
# | ||
# Leave some room for larger apps without needing to reduce other features | ||
CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
CONFIG_ESP_MAIN_TASK_STACK_SIZE=8192 | ||
CONFIG_COMPILER_CXX_EXCEPTIONS=y | ||
|
||
# | ||
# Partition Table | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
CONFIG_ESP_MAIN_TASK_STACK_SIZE=8192 | ||
CONFIG_COMPILER_CXX_EXCEPTIONS=y | ||
|
||
# | ||
# Partition Table | ||
|
This file was deleted.
Oops, something went wrong.