2013-05-01 23:53:28 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 14:36:17 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-03 14:36:17 +00:00
|
|
|
*/
|
2013-02-18 07:33:35 +00:00
|
|
|
|
|
|
|
/**
|
2013-10-28 09:06:16 +00:00
|
|
|
* @file boards/base/Olimex-SAM7EX256-GE8/gadc_lld_board.h
|
2013-02-18 07:33:35 +00:00
|
|
|
* @brief GADC Driver config file.
|
|
|
|
*/
|
|
|
|
|
2013-10-28 09:06:16 +00:00
|
|
|
#ifndef _GADC_LLD_BOARD_H
|
|
|
|
#define _GADC_LLD_BOARD_H
|
2013-02-18 07:33:35 +00:00
|
|
|
|
|
|
|
#if GFX_USE_GADC
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Analogue devices on this board */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#define GADC_PHYSDEV_MICROPHONE 0x00000080
|
|
|
|
#define GADC_PHYSDEV_DIAL 0x00000040
|
|
|
|
#define GADC_PHYSDEV_TEMPERATURE 0x00000020
|
|
|
|
|
|
|
|
#endif /* GFX_USE_GADC */
|
|
|
|
|
2013-10-28 09:06:16 +00:00
|
|
|
#endif /* _GADC_LLD_BOARD_H */
|
2013-02-18 07:33:35 +00:00
|
|
|
|