eive-obsw/bsp_q7s/boardconfig/q7sConfig.h.in

35 lines
1.0 KiB
C
Raw Normal View History

#ifndef BSP_Q7S_BOARDCONFIG_Q7S_CONFIG_H_
#define BSP_Q7S_BOARDCONFIG_Q7S_CONFIG_H_
2021-07-05 12:09:31 +02:00
#include <cstdint>
2022-04-29 15:47:54 +02:00
#define OBSW_Q7S_EM @OBSW_Q7S_EM@
2021-08-20 14:50:40 +02:00
/*******************************************************************/
/** All of the following flags should be enabled for mission code */
/*******************************************************************/
//! Timers can mess up the code when debugging
//! All of this should be enabled for mission code!
/*******************************************************************/
/** Other flags */
/*******************************************************************/
2021-07-28 20:11:22 +02:00
// Probably better if this is disabled for mission code. Convenient for development
2021-08-20 14:50:40 +02:00
#define Q7S_CHECK_FOR_ALREADY_RUNNING_IMG 1
2021-08-20 14:50:40 +02:00
#define Q7S_SIMPLE_ADD_FILE_SYSTEM_TEST 0
2021-06-30 16:15:46 +02:00
2022-03-08 09:37:23 +01:00
#ifndef Q7S_SIMPLE_MODE
#define Q7S_SIMPLE_MODE 0
#endif
2021-07-05 12:09:31 +02:00
namespace config {
static const uint32_t SD_CARD_ACCESS_MUTEX_TIMEOUT = 50;
}
#endif /* BSP_Q7S_BOARDCONFIG_Q7S_CONFIG_H_ */