-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Experimental support for SDK 3.0 for rBoot apps. (#1470)
Warning:: Supports only rBoot applications. In order to enable and test it one can do the following: on Linux, MacOS and FreeBSD ``` cd $SMING_HOME export SDK_BASE="$SMING_HOME/third-party/ESP8266_NONOS_SDK" ``` on Windows ``` cd %SMING_HOME% set SDK_BASE="%SMING_HOME%/third-party/ESP8266_NONOS_SDK" ``` after that reset the Sming code, go to Basic_rBoot, compile it and flash it ``` make dist-clean cd ../samples/Basic_rBoot make make flash ``` Inside the running application type `info` and you should see that now SDK 3.0.* is used.
- Loading branch information
Showing
8 changed files
with
175 additions
and
66 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
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
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,13 +1,24 @@ | ||
diff --git a/include/osapi.h b/include/osapi.h | ||
index 0462a9c..52ad21f 100644 | ||
--- a/include/osapi.h | ||
+++ b/include/osapi.h | ||
@@ -30,7 +30,7 @@ | ||
#include "user_config.h" | ||
diff --git a/include/version.h b/include/version.h | ||
index 3f18631..82e2e94 100644 | ||
--- a/include/version.h | ||
+++ b/include/version.h | ||
@@ -1,11 +1,11 @@ | ||
#ifndef ESP_SDK_VERSION_H | ||
#define ESP_SDK_VERSION_H | ||
|
||
void ets_bzero(void *s, size_t n); | ||
-void ets_delay_us(uint16_t us); | ||
+void ets_delay_us(uint32_t us); | ||
void ets_install_putc1(void (*p)(char c)); | ||
-#define ESP_SDK_VERSION_MAJOR 2 | ||
-#define ESP_SDK_VERSION_MINOR 2 | ||
+#define ESP_SDK_VERSION_MAJOR 3 | ||
+#define ESP_SDK_VERSION_MINOR 0 | ||
#define ESP_SDK_VERSION_PATCH 0 | ||
|
||
#define os_bzero ets_bzero | ||
-#define ESP_SDK_VERSION_NUMBER 0x020200 | ||
-#define ESP_SDK_VERSION_STRING "2.2.0" | ||
+#define ESP_SDK_VERSION_NUMBER 0x030000 | ||
+#define ESP_SDK_VERSION_STRING "3.0.0" | ||
|
||
#endif | ||
diff --git a/bin/esp_init_data_default_v08.bin b/bin/esp_init_data_default.bin | ||
similarity index 100% | ||
rename from bin/esp_init_data_default_v08.bin | ||
rename to bin/esp_init_data_default.bin |
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
Submodule ESP8266_NONOS_SDK
updated
101 files