18 lines
310 B
C++
18 lines
310 B
C++
/*
|
|
* peripherals_config.h
|
|
*
|
|
* Created on: Feb 24, 2021
|
|
* Author: erki
|
|
*/
|
|
|
|
#ifndef PERIPHERALS_CONFIG_HPP_
|
|
#define PERIPHERALS_CONFIG_HPP_
|
|
|
|
#define PERIPHERALS_USE_DELAY_US
|
|
|
|
#ifndef PERIPHERALS_USE_DELAY_US
|
|
# pragma info "Compiled without usecond delay."
|
|
#endif
|
|
|
|
#endif /* PERIPHERALS_CONFIG_HPP_ */
|