void setup() {
// put your setup code here, to run once:
volatile char *dr;
dr=0x30;
*dr=0xff;
}
void loop() {
// put your main code here, to run repeatedly:
volatile char *out;
out=0x31;
*out=0b10000000;
}
void setup() {
// put your setup code here, to run once:
volatile char *dr;
dr=0x30;
*dr=0xff;
}
void loop() {
// put your main code here, to run repeatedly:
volatile char *out;
out=0x31;
*out=0b10000000;
}