forked from commaai/openpilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Register readback on most modules. Still need to convert the …
…other ones (commaai#396)" This reverts commit 893e486.
- Loading branch information
Showing
25 changed files
with
153 additions
and
306 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 |
---|---|---|
@@ -1 +1 @@ | ||
v1.6.9 | ||
v1.6.8 |
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 was deleted.
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
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,40 +1,40 @@ | ||
void clock_init(void) { | ||
// enable external oscillator | ||
register_set_bits(&(RCC->CR), RCC_CR_HSEON); | ||
RCC->CR |= RCC_CR_HSEON; | ||
while ((RCC->CR & RCC_CR_HSERDY) == 0); | ||
|
||
// divide things | ||
register_set(&(RCC->CFGR), RCC_CFGR_HPRE_DIV1 | RCC_CFGR_PPRE2_DIV2 | RCC_CFGR_PPRE1_DIV4, 0xFF7FFCF3U); | ||
RCC->CFGR = RCC_CFGR_HPRE_DIV1 | RCC_CFGR_PPRE2_DIV2 | RCC_CFGR_PPRE1_DIV4; | ||
|
||
// 16mhz crystal | ||
register_set(&(RCC->PLLCFGR), RCC_PLLCFGR_PLLQ_2 | RCC_PLLCFGR_PLLM_3 | RCC_PLLCFGR_PLLN_6 | RCC_PLLCFGR_PLLN_5 | RCC_PLLCFGR_PLLSRC_HSE, 0x7F437FFFU); | ||
RCC->PLLCFGR = RCC_PLLCFGR_PLLQ_2 | RCC_PLLCFGR_PLLM_3 | | ||
RCC_PLLCFGR_PLLN_6 | RCC_PLLCFGR_PLLN_5 | RCC_PLLCFGR_PLLSRC_HSE; | ||
|
||
// start PLL | ||
register_set_bits(&(RCC->CR), RCC_CR_PLLON); | ||
RCC->CR |= RCC_CR_PLLON; | ||
while ((RCC->CR & RCC_CR_PLLRDY) == 0); | ||
|
||
// Configure Flash prefetch, Instruction cache, Data cache and wait state | ||
// *** without this, it breaks *** | ||
register_set(&(FLASH->ACR), FLASH_ACR_ICEN | FLASH_ACR_DCEN | FLASH_ACR_LATENCY_5WS, 0x1F0FU); | ||
FLASH->ACR = FLASH_ACR_ICEN | FLASH_ACR_DCEN | FLASH_ACR_LATENCY_5WS; | ||
|
||
// switch to PLL | ||
register_set_bits(&(RCC->CFGR), RCC_CFGR_SW_PLL); | ||
RCC->CFGR |= RCC_CFGR_SW_PLL; | ||
while ((RCC->CFGR & RCC_CFGR_SWS) != RCC_CFGR_SWS_PLL); | ||
|
||
// *** running on PLL *** | ||
} | ||
|
||
void watchdog_init(void) { | ||
// setup watchdog | ||
IWDG->KR = 0x5555U; | ||
register_set(&(IWDG->PR), 0x0U, 0x7U); // divider/4 | ||
|
||
IWDG->KR = 0x5555; | ||
IWDG->PR = 0; // divider /4 | ||
// 0 = 0.125 ms, let's have a 50ms watchdog | ||
register_set(&(IWDG->RLR), (400U-1U), 0xFFFU); | ||
IWDG->KR = 0xCCCCU; | ||
IWDG->RLR = 400 - 1; | ||
IWDG->KR = 0xCCCC; | ||
} | ||
|
||
void watchdog_feed(void) { | ||
IWDG->KR = 0xAAAAU; | ||
IWDG->KR = 0xAAAA; | ||
} | ||
|
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
Oops, something went wrong.