#pragma GCC optimize ("Og")
#include "ArduinoTrace.h"
void setup() {
// put your setup code here, to run once:
//------- process -------
// PB2 is in digital pin 10
PORTB = 4; // 4 <--> B00000100 // PB2 configured to be out
DDRB = 4; // 4 <--> B00000100 // send 1 to PB2
//-----------------------
}
void loop() {
// put your main code here, to run repeatedly:
}