1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #6607 from haukepetersen/opt_periph_errorguard

periph: removed broken xx_NUMOF checks
This commit is contained in:
Vincent Dupont 2017-02-22 16:22:16 +01:00 committed by GitHub
commit f4b0cccd41
3 changed files with 0 additions and 27 deletions

View File

@ -52,15 +52,6 @@
extern "C" {
#endif
/**
* @brief Make sure the number of available ADC lines is defined
* @{
*/
#ifndef ADC_NUMOF
#error "ADC_NUMOF undefined"
#endif
/** @} */
/**
* @brief Define default ADC type identifier
* @{

View File

@ -48,15 +48,6 @@
extern "C" {
#endif
/**
* @brief Make sure the number of available DAC lines is defined
* @{
*/
#ifndef DAC_NUMOF
#define "DAC_NUMOF undefined"
#endif
/** @} */
/**
* @brief Define default DAC type identifier
* @{

View File

@ -57,15 +57,6 @@
extern "C" {
#endif
/**
* @brief Make sure the number of available UART devices is defined
* @{
*/
#ifndef UART_NUMOF
#error "UART_NUMOF undefined for the target platform"
#endif
/** @} */
/**
* @brief Define default UART type identifier
* @{