Browse Source

Merge pull request #87 from FrankBoesing/patch-3

SCAN Control register #define TSI_SCANC_EXTCHRG(n)
main
Paul Stoffregen 9 years ago
parent
commit
c0196ca8da
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      teensy3/kinetis.h

+ 1
- 1
teensy3/kinetis.h View File

@@ -4446,7 +4446,7 @@ typedef struct __attribute__((packed)) {
#define TSI_GENCS_STPE ((uint32_t)0x00000001) //
#define TSI0_SCANC (*(volatile uint32_t *)0x40045004) // SCAN Control Register
#define TSI_SCANC_REFCHRG(n) (((n) & 15) << 24) //
#define TSI_SCANC_EXTCHRG(n) (((n) & 7) << 16) //
#define TSI_SCANC_EXTCHRG(n) (((n) & 15) << 16) //
#define TSI_SCANC_SMOD(n) (((n) & 255) << 8) //
#define TSI_SCANC_AMCLKS(n) (((n) & 3) << 3) //
#define TSI_SCANC_AMPSC(n) (((n) & 7) << 0) //

Loading…
Cancel
Save