Would you like to react to this message? Create an account in a few clicks or log in to continue.

You are not connected. Please login or register

Probe meter is not responding to Atmega8 pin change (blinking)

2 posters

Go down  Message [Page 1 of 1]

unbreakmyheart



Is this an expected behavior? Thanks.

Probe meter is not responding to Atmega8 pin change (blinking) Blink_10

Code:

#include <stdint.h>
#include <avr/io.h>
#include <util/delay.h>

int main()
{
    DDRB = 0b11111111; // set all PortC Output
    while (true)
    {
        PORTB ^= (1 << PB1);
        _delay_ms(500);
    }
}

arcachofo

arcachofo

I guess you are using the development branch (trunk).

Solved at trunk Rev 1793.

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum