Skip to content

Commit

Permalink
Merge pull request #55 from linorobot/rolling-cleanup
Browse files Browse the repository at this point in the history
removed unused robots
  • Loading branch information
grassjelly authored Aug 26, 2023
2 parents 3f5707b + 7945e04 commit d598aa0
Show file tree
Hide file tree
Showing 6 changed files with 10 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
17 changes: 4 additions & 13 deletions config/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,14 @@
// 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"
#ifdef USE_VATTENKAR_CONFIG
#include "custom/vattenkar_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

#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 d598aa0

Please sign in to comment.