Files
avr_328p_freertos/Drivers/led.c
2015-02-04 15:02:53 -06:00

23 lines
242 B
C

/*
* led.c
*
* Created on: Feb 4, 2015
* Author: jcobb
*/
#include <avr/io.h>
#include "led.h"
void vLEDInit(void)
{
DDRB |= _BV(PB5);
//DDRB |= _BV(PB6);
}
void vLEDToggle(void)
{
PORTB ^= _BV(PB5);
//PORTD ^= _BV(PD6);
}