Basebot software: Difference between revisions

From Rsewiki
No edit summary
No edit summary
Line 31: Line 31:
  + test  
  + test  


The top directory (basebot) is for "MS Visual Studio Code", the basebot.ino is the Arduino code and the subdirectory '''src''' is the support code that makes it a basebot.
The top directory (basebot) is for "MS Visual Studio Code", the basebot.ino is the Arduino code and the subdirectory '''src''' is the support files (c++ code) that makes it a basebot.
 
If using MS Visual studio, then the top directory "basebot_6" should be called "src", either rename or make a symbolic link called src that points to basebot_6 in the same directory. Further sone items in MS Visual Studio Code works better if you rename basebot_6.ino to basebot_6.cpp.

Revision as of 09:41, 7 September 2024

Back to Basebot

Install SVN

The software is in an SVN repository.

SVN is an open-source repository management software; see: https://subversion.apache.org/

Install a version for your platform.

Get Basebot source

The repository address is

svn://repos.gbar.dtu.dk/jcan/basebot

If you have a command line version of SVN, then:

svn checkout svn://repos.gbar.dtu.dk

This will give you a file structure like this:

basebot
+ basebot_6
| + basebot_6.ino
| + Makefile
| + src
| | + (basebot support files)
+ include
+ lib
+ platformio.ini
+ test 

The top directory (basebot) is for "MS Visual Studio Code", the basebot.ino is the Arduino code and the subdirectory src is the support files (c++ code) that makes it a basebot.

If using MS Visual studio, then the top directory "basebot_6" should be called "src", either rename or make a symbolic link called src that points to basebot_6 in the same directory. Further sone items in MS Visual Studio Code works better if you rename basebot_6.ino to basebot_6.cpp.