Skip to content
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ see protocol.md for the protocol specification
// TODO: resolve assert
#define assert(expr)

#include <cstdio>

#include <functional>
#include <limits>
#include <cmath>
Expand Down
2 changes: 1 addition & 1 deletion 2.Firmware/Core-STM32F4-fw/Bsp/imu/MPU6050.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ THE SOFTWARE.
===============================================
*/

#include "mpu6050.hpp"
#include "MPU6050.hpp"

#define pgm_read_byte(addr) (*(const unsigned char *)(addr))

Expand Down
2 changes: 2 additions & 0 deletions 2.Firmware/Core-STM32F4-fw/Robot/instances/dummy_robot.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#ifndef REF_STM32F4_FW_DUMMY_ROBOT_H
#define REF_STM32F4_FW_DUMMY_ROBOT_H

#include <string>

#include "algorithms/kinematic/6dof_kinematic.h"
#include "actuators/ctrl_step/ctrl_step.hpp"

Expand Down