Sfoglia il codice sorgente

Merge pull request #41 from FrankBoesing/patch-1

Use CCM_CBCMR instead "/7"
main
Paul Stoffregen 5 anni fa
parent
commit
7bb5933cf4
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      SPI.h

+ 2
- 1
SPI.h Vedi File

@@ -1053,7 +1053,8 @@ private:
__attribute__((__always_inline__)) {
// TODO: Need to check timings as related to chip selects?

uint32_t d, div, clkhz = 528000000/7; // LPSPI peripheral clock
uint32_t d, div;
uint32_t clkhz = 528000000u / (((CCM_CBCMR >> 26 ) & 0x07 ) + 1); // LPSPI peripheral clock
if (clock == 0) clock =1;
d= clkhz/clock;
if (d && clkhz/d > clock) d++;

Loading…
Annulla
Salva