#ifndef LINO_BASE_CONFIG_H
#define LINO_BASE_CONFIG_H
//uncomment the base you're building
//#define LINO_BASE DIFFERENTIAL_DRIVE // 2WD and Tracked robot w/ 2 motors
// #define LINO_BASE SKID_STEER // 4WD robot
// #define LINO_BASE ACKERMANN // Car-like steering robot w/ 2 motors
// #define LINO_BASE ACKERMANN1 // Car-like steering robot w/ 1 motor
#define LINO_BASE MECANUM // Mecanum drive robot
//uncomment the motor driver you're using
#define USE_L298_DRIVER
// #define USE_BTS7960_DRIVER
// #define USE_ESC
//uncomment the IMU you're using
#define USE_GY85_IMU
// #define USE_MPU6050_IMU
// #define USE_MPU9150_IMU
// #define USE_MPU9250_IMU
#define DEBUG 1
#define K_P 0.6 // P constant
#define K_I 0.3 // I constant
#define K_D 0.5 // D constant
//define your robot' specs here
#define MAX_RPM 120 // motor's maximum RPM
#define COUNTS_PER_REV 768 // wheel encoder's no of ticks per rev
#define WHEEL_DIAMETER 0.10 // wheel's diameter in meters
#define PWM_BITS 8 // PWM Resolution of the microcontroller
#define LR_WHEELS_DISTANCE 0.400 // distance between left and right wheels
#define FR_WHEELS_DISTANCE 0.330 // distance between front and rear wheels. Ignore this if you're on 2WD/ACKERMANN
#define MAX_STEERING_ANGLE 0.415 // max steering angle. This only applies to Ackermann steering
I found the the bottom link for running a DC motor on teensy. Is this good for a test or is there something better?
http://little-scale.blogspot.com/2017/05/teensy-36-basics-using-dc-motors.html?m=1