uint8_t req2[250];
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
req2[4] = 0xff;
Serial.println(req2[4]);
Serial.println(sizeof(req2) );
// for( int x=0 ; x<250 ; x++){
// Serial.println("uint8_t i"+String(x)+";");
// }
}
//char input;
void loop() {
if(Serial.available()){
char input = Serial.read();
Serial.println(input);
}
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}