mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
2a709f28fa
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
17 lines
375 B
C
17 lines
375 B
C
|
|
#ifndef _DT_BINDINGS_ADI_AD5592R_H
|
|
#define _DT_BINDINGS_ADI_AD5592R_H
|
|
|
|
#define CH_MODE_UNUSED 0
|
|
#define CH_MODE_ADC 1
|
|
#define CH_MODE_DAC 2
|
|
#define CH_MODE_DAC_AND_ADC 3
|
|
#define CH_MODE_GPIO 8
|
|
|
|
#define CH_OFFSTATE_PULLDOWN 0
|
|
#define CH_OFFSTATE_OUT_LOW 1
|
|
#define CH_OFFSTATE_OUT_HIGH 2
|
|
#define CH_OFFSTATE_OUT_TRISTATE 3
|
|
|
|
#endif /* _DT_BINDINGS_ADI_AD5592R_H */
|