2025.5.17第二次提交,添加根据实机调试修改的版本

This commit is contained in:
氧原子
2025-05-17 15:12:16 +08:00
parent 5ce7796b14
commit 47a4473330
15 changed files with 940 additions and 0 deletions

20
bot_code/makefile Normal file
View File

@@ -0,0 +1,20 @@
cxx := g++sim
file_cpp := $(wildcard *.cpp)
file_o := ../eyesim/all_test01/maze.x
$(file_o) : $(file_cpp)
@$(cxx) $^ -o $@
maze : $(file_o)
clean :
@rm -rf $(file_o)
debug :
@echo $(cxx)
@echo $(file_cpp)
@echo $(file_o)
.PHONY : maze clean debug