minor fixes
This commit is contained in:
parent
ff6025d04d
commit
20842a26af
@ -2,4 +2,8 @@ target_sources(${TARGET_NAME} PRIVATE
|
||||
STM32TestTask.cpp
|
||||
)
|
||||
|
||||
add_subdirectory(networking)
|
||||
option(STM32_ADD_NETWORKING_CODE "Add networking code requiring lwIP" OFF)
|
||||
|
||||
if(STM32_ADD_NETWORKING_CODE)
|
||||
add_subdirectory(networking)
|
||||
endif()
|
@ -1,6 +1,6 @@
|
||||
#include <common/stm32_nucleo/STM32TestTask.h>
|
||||
#include <stm32h7xx_nucleo.h>
|
||||
#include <OBSWConfig.h>
|
||||
#include "STM32TestTask.h"
|
||||
#include "stm32h7xx_nucleo.h"
|
||||
#include "OBSWConfig.h"
|
||||
|
||||
STM32TestTask::STM32TestTask(object_id_t objectId, bool enablePrintout,
|
||||
bool blinkyLed): TestTask(objectId, enablePrintout),
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef BSP_STM32_BOARDTEST_STM32TESTTASK_H_
|
||||
#define BSP_STM32_BOARDTEST_STM32TESTTASK_H_
|
||||
|
||||
#include <test/TestTask.h>
|
||||
#include "../test/TestTask.h"
|
||||
|
||||
class STM32TestTask: public TestTask {
|
||||
public:
|
||||
|
Loading…
x
Reference in New Issue
Block a user