Parcourir la source

Teensy LC does not support saturate instruction

teensy4-core
PaulStoffregen il y a 6 ans
Parent
révision
27cdeb1cb9
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. +2
    -1
      teensy3/analog.c

+ 2
- 1
teensy3/analog.c Voir le fichier

@@ -536,7 +536,8 @@ void analogWriteDAC0(int val)
// use whatever voltage is on the AREF pin
DAC0_C0 = DAC_C0_DACEN | DAC_C0_DACSWTRG; // 3.3V VDDA
}
__asm__ ("usat %[value], #12, %[value]\n\t" : [value] "+r" (val)); // 0 <= val <= 4095
if (val < 0) val = 0;
else if (val > 4095) val = 4095;

*(volatile aliased_int16_t *)&(DAC0_DAT0L) = val;
#endif

Chargement…
Annuler
Enregistrer