mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
Fix MCK in usart, our MCK is 16*12/2/2
This commit is contained in:
parent
362d7b6956
commit
e9eb764358
2 changed files with 4 additions and 2 deletions
|
@ -225,7 +225,7 @@ void usart_init(uint32_t baudrate, uint8_t parity) {
|
|||
// note that for very large baudrates, error is not neglectible:
|
||||
// b921600 => 8.6%
|
||||
// b1382400 => 8.6%
|
||||
pUS1->US_BRGR = 48054841 / (usart_baudrate << 3);
|
||||
pUS1->US_BRGR = 48000000 / (usart_baudrate << 3);
|
||||
|
||||
// Write the Timeguard Register
|
||||
pUS1->US_TTGR = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue