-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
firmware: Dividing the flash memory in sectors for each data type #344
Showing
3 changed files
with
76 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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
* | ||
* \author Gabriel Mariano Marcelino <[email protected]> | ||
* | ||
* \version 0.10.7 | ||
* \version 0.10.9 | ||
* | ||
* \date 2019/10/26 | ||
* | ||
|
@@ -130,8 +130,27 @@ | |
#define CONFIG_ANTENNA_DEPLOYMENT_ATTEMPTS 10U | ||
#define CONFIG_ANTENNA_DEPLOYMENT_HIBERNATION_MIN 45 | ||
|
||
/* Memory addresses */ | ||
#define CONFIG_MEM_ADR_SYS_TIME 0 | ||
/* Memory */ | ||
#define CONFIG_MEM_ADR_INIT_WORD 0 | ||
#define CONFIG_MEM_ADR_SYS_PARAM 256 | ||
#define CONFIG_MEM_ADR_SYS_TIME 512 | ||
#define CONFIG_MEM_INIT_WORD {228, 80, 142, 227, 77, 121, 176, 244} | ||
#define CONFIG_MEM_OBDH_DATA_START_PAGE 0U | ||
#define CONFIG_MEM_OBDH_DATA_END_PAGE 56999U | ||
#define CONFIG_MEM_EPS_DATA_START_PAGE 57000U | ||
#define CONFIG_MEM_EPS_DATA_END_PAGE 113999U | ||
#define CONFIG_MEM_TTC_0_DATA_START_PAGE 114000U | ||
#define CONFIG_MEM_TTC_0_DATA_END_PAGE 170999U | ||
#define CONFIG_MEM_TTC_1_DATA_START_PAGE 171000U | ||
#define CONFIG_MEM_TTC_1_DATA_END_PAGE 227999U | ||
#define CONFIG_MEM_ANT_DATA_START_PAGE 228000U | ||
#define CONFIG_MEM_ANT_DATA_END_PAGE 284999U | ||
#define CONFIG_MEM_EDC_DATA_START_PAGE 285000U | ||
#define CONFIG_MEM_EDC_DATA_END_PAGE 341999U | ||
#define CONFIG_MEM_PX_DATA_START_PAGE 342000U | ||
#define CONFIG_MEM_PX_DATA_END_PAGE 398999U | ||
#define CONFIG_MEM_SBCD_PKTS_START_PAGE 399000U | ||
#define CONFIG_MEM_SBCD_PKTS_END_PAGE 499999U | ||
|
||
#endif /* CONFIG_H_ */ | ||
|
||
|