avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to get you started , read readme.md and readme-tk1-loader.md
This commit is contained in:
31
u-boot/include/sandbox-adc.h
Normal file
31
u-boot/include/sandbox-adc.h
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright (C) 2015 Samsung Electronics
|
||||
* Przemyslaw Marczak <p.marczak@samsung.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#ifndef _SANDBOX_ADC_H_
|
||||
#define _SANDBOX_ADC_H_
|
||||
|
||||
#define SANDBOX_ADC_DEVNAME "adc@0"
|
||||
#define SANDBOX_ADC_DATA_MASK 0xffff /* 16-bits resolution */
|
||||
#define SANDBOX_ADC_CHANNELS 4
|
||||
#define SANDBOX_ADC_CHANNEL0_DATA 0x0
|
||||
#define SANDBOX_ADC_CHANNEL1_DATA 0x1000
|
||||
#define SANDBOX_ADC_CHANNEL2_DATA 0x2000
|
||||
#define SANDBOX_ADC_CHANNEL3_DATA 0x3000
|
||||
|
||||
enum sandbox_adc_mode {
|
||||
SANDBOX_ADC_MODE_SINGLE_CHANNEL = 0,
|
||||
SANDBOX_ADC_MODE_MULTI_CHANNEL,
|
||||
};
|
||||
|
||||
enum sandbox_adc_status {
|
||||
SANDBOX_ADC_INACTIVE = 0,
|
||||
SANDBOX_ADC_ACTIVE,
|
||||
};
|
||||
|
||||
#define SANDBOX_ADC_VSS_VALUE 0
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user