Explorar el Código

Merge pull request #41 from FrankBoesing/patch-1

Use CCM_CBCMR instead "/7"
main
Paul Stoffregen hace 5 años
padre
commit
7bb5933cf4
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      SPI.h

+ 2
- 1
SPI.h Ver fichero

@@ -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++;

Cargando…
Cancelar
Guardar