It is printing just a piece and no always the same
#include <Arduino.h>
void print_intro(void);
uint8_t disable_throttle = 0;
void setup() {
Serial.begin(115200);
delay(200); // wait for serial monitor to open
}
void loop() {
print_intro();
delay(2000);
}
//****************************void print_intro(void)******************************************/
void print_intro(void) {
Serial.println( "" );
Serial.println( "" );
Serial.println( "===================================================" );
Serial.println( " YMFC-32 quadcopter setup tool" );
Serial.println( "===================================================" );
Serial.println( "a = Read the receiver input pulses" );
Serial.println( "b = I2C scanner to detect any I2C sensors attached" );
Serial.println( "c = Read the raw gyro values" );
Serial.println( "d = Read the raw accelerometer values" );
Serial.println( "e = Check the IMU angles" );
Serial.println( "f = Test the LEDs" );
Serial.println( "g = Read the battery voltage input" );
Serial.println( "h = Get gyro and accelerometer calibration values" );
Serial.println( "===================================================" );
Serial.println( "1 = Check motor 1 (front right, counter clockwise direction)" );
Serial.println( "2 = Check motor 2 (rear right, clockwise direction)" );
Serial.println( "3 = Check motor 3 (rear left, counter clockwise direction)" );
Serial.println( "4 = Check motor 4 (front left, clockwise direction)" );
Serial.println( "5 = Check all motors" );
Serial.println( "===================================================" );
Serial.println( "For support and questions: www.brokking.net");
Serial.println( "" );
if (disable_throttle == 0) { //If the throttle is not disabled.
Serial.println( "===================================================") ;
Serial.println( " WARNING >>>THROTTLE IS ENABLED<<< WARNING") ;
Serial.println( "===================================================" ) ;
}
}
=========================================================================
[env:genericSTM32F103C8]
platform = ststm32
board = genericSTM32F103C8
framework = arduino
board_build.core = maple
upload_protocol = stlink
debug_tool = stlink
monitor_speed = 115200
build_flags = -D PIO_FRAMEWORK_ARDUINO_ENABLE_CDC