Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
60 changes: 0 additions & 60 deletions .travis.yml

This file was deleted.

4 changes: 4 additions & 0 deletions radio/src/opentx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#if !defined(SIMU)
#include "stm32_hal.h"
#include "stm32_hal_ll.h"
#endif

#include "opentx.h"

Expand Down
5 changes: 3 additions & 2 deletions radio/src/opentx.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@
#include <stdlib.h>
#include "definitions.h"
#include "opentx_types.h"
#if defined(STM32)

#include "stm32_hal.h"
#include "stm32_hal_ll.h"
#include "usbd_conf.h"
#endif

#if defined(SIMU)
#define SWITCH_SIMU(a, b) (a)
Expand Down
5 changes: 3 additions & 2 deletions radio/src/targets/common/arm/stm32/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ endif()

set(TARGET_SRC
${TARGET_SRC}
../common/arm/stm32/rtc_driver.cpp
../common/arm/stm32/cpu_id.cpp
# ../common/arm/stm32/rtc_driver.cpp
# ../common/arm/stm32/cpu_id.cpp
${AUX_SERIAL_DRIVER}
)

set(FIRMWARE_TARGET_SRC
${FIRMWARE_TARGET_SRC}
../common/arm/stm32/delays.cpp
Expand Down
Loading