RMUL2025/hw/bsp/Webots/main.cpp

14 lines
169 B
C++

#include <thread.hpp>
#include "bsp.h"
#include "robot.hpp"
int main() {
bsp_init();
robot_init();
while (1) {
wb_robot_step(1);
poll(NULL, 0, 1);
}
}