Skip to content

Commit

Permalink
still messing with subproject integration
Browse files Browse the repository at this point in the history
  • Loading branch information
avtoku committed Nov 21, 2024
1 parent 128cbe7 commit 3a2ee5a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
path = boards/varmint_h7
url = https://github.com/rosflight/varmint_h7.git
[submodule "include/interfaces"]
path = include/interfaces
path = include/interface
url = [email protected]:rosflight/rosflight_firmware-board-common.git
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ cmake_minimum_required(VERSION 3.8)
project(rosflight_firmware C CXX ASM)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_C_STANDARD 11)

set(CMAKE_C_STANDARD 11)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
endif()
Expand All @@ -41,7 +41,7 @@ endif()

include_directories(
include
include/interfaces
include/interface
lib
comms/mavlink
comms/mavlink/v1.0
Expand Down
2 changes: 1 addition & 1 deletion comms/mavlink/mavlink.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#include "v1.0/rosflight/mavlink.h"
#pragma GCC diagnostic pop

#include "interfaces/comm_link.h"
#include "interface/comm_link.h"

#include "board.h"

Expand Down
2 changes: 1 addition & 1 deletion include/comm_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#ifndef ROSFLIGHT_FIRMWARE_COMM_MANAGER_H
#define ROSFLIGHT_FIRMWARE_COMM_MANAGER_H

#include "interfaces/comm_link.h"
#include "interface/comm_link.h"
#include "param_listener.h"

#include <stdarg.h>
Expand Down
2 changes: 1 addition & 1 deletion include/rosflight.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#ifndef ROSFLIGHT_FIRMWARE_ROSFLIGHT_H
#define ROSFLIGHT_FIRMWARE_ROSFLIGHT_H

#include "interfaces/comm_link.h"
#include "interface/comm_link.h"
#include "param_listener.h"

#include "board.h"
Expand Down

0 comments on commit 3a2ee5a

Please sign in to comment.