This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v1.18.3] Special release - pre-requisite for OTA update from 1.18.2 …
…to 1.20 Firmware Since new Firmwares [1.20.0.xx] has increasted partition sizes and partition table structure this Intermidiate Firmware is required as 1st Step OTA to a final OTA upgrade to v1.20.0.xx from 1.18.2 before upgrading to this Firmware please see: https://docs.pycom.io/tutorials/all/ota/
- Loading branch information
Showing
13 changed files
with
238 additions
and
18 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
Géza Husi,gezahusi,Geza-laptop,21.05.2019 18:36,file:///home/gezahusi/snap/libreoffice/118/.config/libreoffice/4; |
Binary file not shown.
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
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,25 @@ | ||
/* | ||
* Copyright (c) 2019, Pycom Limited. | ||
* | ||
* This software is licensed under the GNU GPL version 3 or any | ||
* later version, with permitted additional terms. For more information | ||
* see the Pycom Licence v1.0 document supplied with this file, or | ||
* available at https://www.pycom.io/opensource/licensing | ||
*/ | ||
|
||
#include "esp_system.h" | ||
|
||
static esp_chip_info_t chip_info; | ||
|
||
void esp32_init_chip_info(void) | ||
{ | ||
// Get chip Info | ||
esp_chip_info(&chip_info); | ||
} | ||
|
||
uint8_t esp32_get_chip_rev(void) | ||
{ | ||
return chip_info.revision; | ||
} | ||
|
||
|
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,16 @@ | ||
/* | ||
* Copyright (c) 2019, Pycom Limited. | ||
* | ||
* This software is licensed under the GNU GPL version 3 or any | ||
* later version, with permitted additional terms. For more information | ||
* see the Pycom Licence v1.0 document supplied with this file, or | ||
* available at https://www.pycom.io/opensource/licensing | ||
*/ | ||
|
||
#ifndef ESP32_UTIL_ESP32CHIPINFO_H_ | ||
#define ESP32_UTIL_ESP32CHIPINFO_H_ | ||
|
||
extern void esp32_init_chip_info(void); | ||
extern uint8_t esp32_get_chip_rev(void); | ||
|
||
#endif /* ESP32_UTIL_ESP32CHIPINFO_H_ */ |