Skip to content

Commit

Permalink
不要な引数削除、リンカフラグはつけない
Browse files Browse the repository at this point in the history
  • Loading branch information
eyr1n committed Oct 27, 2024
1 parent 557289f commit 9248f18
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 0 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ target_include_directories(${PROJECT_NAME} INTERFACE
include
)

target_link_libraries(${PROJECT_NAME} INTERFACE
"-u _printf_float"
)

find_package(Doxygen)
if(DOXYGEN_FOUND)
set(DOXYGEN_EXTRACT_ALL YES)
Expand Down
3 changes: 1 addition & 2 deletions src/fdcan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ size_t FDCAN::available() { return osMessageQueueGetCapacity(rx_queue_); }

} // namespace tutrc_harurobo_lib

void HAL_FDCAN_RxFifo0Callback(FDCAN_HandleTypeDef *hfdcan,
uint32_t RxFifo0ITs) {
void HAL_FDCAN_RxFifo0Callback(FDCAN_HandleTypeDef *hfdcan, uint32_t) {
static FDCAN_RxHeaderTypeDef rx_header;
static tutrc_harurobo_lib::CANMessage msg;

Expand Down

0 comments on commit 9248f18

Please sign in to comment.