Skip to content

Commit

Permalink
removed unused robots
Browse files Browse the repository at this point in the history
  • Loading branch information
grassjelly committed Aug 26, 2023
1 parent 3f5707b commit e1cfa8f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 217 deletions.
18 changes: 2 additions & 16 deletions calibration/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,8 @@ build_flags =
-I ../config
-D USE_DEV_CONFIG

[env:beebo]
board = teensy31
board_build.f_cpu = 96000000L
build_flags =
-I ../config
-D USE_BEEBO_CONFIG

[env:beebo_m]
board = teensy31
board_build.f_cpu = 96000000L
build_flags =
-I ../config
-D USE_BEEBO_M_CONFIG

[env:square]
[env:vattenkar]
board = teensy40
build_flags =
-I ../config
-D USE_SQUARE_CONFIG
-D USE_VATTENKAR_CONFIG
14 changes: 1 addition & 13 deletions config/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifdef USE_BEEBO_CONFIG
#include "custom/beebo_config.h"
#endif

#ifdef USE_BEEBO_M_CONFIG
#include "custom/beebo_m_config.h"
#endif

#ifdef USE_SQUARE_CONFIG
#include "custom/square_config.h"
#endif

#ifdef USE_DEV_CONFIG
#include "custom/dev_config.h"
#endif

#if !defined (USE_BEEBO_CONFIG) && !defined (USE_DEV_CONFIG) && !defined (USE_SQUARE_CONFIG) && !defined (USE_BEEBO_M_CONFIG)
#if !defined (USE_VATTENKAR_CONFIG)
#include "lino_base_config.h"
#endif

84 changes: 0 additions & 84 deletions config/custom/beebo_m_config.h

This file was deleted.

84 changes: 0 additions & 84 deletions config/custom/square_config.h

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef BEEBO_CONFIG_H
#define BEEBO_CONFIG_H
#ifndef VATTENKAR_CONFIG_H
#define VATTENKAR_CONFIG_H

#define LED_PIN 13

Expand Down
20 changes: 2 additions & 18 deletions firmware/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -48,25 +48,9 @@ build_flags =
-I ../config
-D USE_DEV_CONFIG

[env:beebo]
board = teensy31
board_build.f_cpu = 96000000L
build_flags =
-I ../config
-llibc -lc
-D USE_BEEBO_CONFIG

[env:beebo_m]
board = teensy31
board_build.f_cpu = 96000000L
build_flags =
-I ../config
-llibc -lc
-D USE_BEEBO_M_CONFIG

[env:square]
[env:vattenkar]
board = teensy40
upload_port = /dev/linobase
build_flags =
-I ../config
-D USE_SQUARE_CONFIG
-D USE_VATTENKAR_CONFIG

0 comments on commit e1cfa8f

Please sign in to comment.