void setup() {
// put your setup code here, to run once:
volatile char *dir;
dir = 0x30;
*dir= 0xFF;
}
void loop() {
// put your main code here, to run repeatedly:
volatile char *out;
out = 0x01;
*out= 1;
}
void setup() {
// put your setup code here, to run once:
volatile char *dir;
dir = 0x30;
*dir= 0xFF;
}
void loop() {
// put your main code here, to run repeatedly:
volatile char *out;
out = 0x01;
*out= 1;
}