mirror of
https://github.com/hubaldv/bioz-firmware-rs.git
synced 2025-12-06 05:01:18 +00:00
Added lineairmap to lib for sequencer.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user