Browse Source

Add internal analog channels on Teensy-LC

main
PaulStoffregen 9 years ago
parent
commit
ea4252feb8
1 changed files with 4 additions and 5 deletions
  1. +4
    -5
      teensy3/analog.c

+ 4
- 5
teensy3/analog.c View File

#elif defined(__MKL26Z64__) #elif defined(__MKL26Z64__)
static const uint8_t channel2sc1a[] = { static const uint8_t channel2sc1a[] = {
5, 14, 8, 9, 13, 12, 6, 7, 15, 11, 5, 14, 8, 9, 13, 12, 6, 7, 15, 11,
0, 4+64, 23
0, 4+64, 23, 26, 27
}; };







#endif #endif




index = pin; // 0-12 refer to A0-A12 index = pin; // 0-12 refer to A0-A12
} else if (pin >= 14 && pin <= 26) { } else if (pin >= 14 && pin <= 26) {
index = pin - 14; // 14-26 are A0-A12 index = pin - 14; // 14-26 are A0-A12
} else if (pin >= 38 && pin <= 39) {
index = pin - 25; // 38=temperature
// 39=bandgap ref (PMC_REGSC |= PMC_REGSC_BGBE)
} else { } else {
return 0; return 0;
} }








Loading…
Cancel
Save