Added lineairmap to lib for sequencer.

This commit is contained in:
2025-08-14 13:23:23 +02:00
parent f1015ee00d
commit 03a04bf789
5 changed files with 88 additions and 26 deletions

View File

@@ -71,12 +71,20 @@ bitflags! {
}
}
bitflags! {
// HIGH POWER AND LOW POWER BUFFER CONTROL REGISTER
// Address 0x00002180, Reset 0x00000037, Name BEFSENCON
}
bitflags! {
// ADC Configuration Register,
// Address 0x000021A8, Reset: 0x00000000, Name: ADCCON
pub struct ADCCON: u32 {
const GNPGA_1_5 = 1 << 16;
const MUXSELN_TIAN = 0b00001 << 8;
const MUXSELN_TEMP = 0b01011 << 8;
const MUXSELP_TIAP = 0b00001;
const MUXSELP_TEMP = 0b01011;
}
}