Files
@ 96a7529926a0
Branch filter:
Location: seniordesign-firmware/slave/slave/lib/led.c - annotation
96a7529926a0
419 B
text/plain
i2c library work.
764445936cca af3d1c88dc4a 764445936cca 764445936cca 764445936cca 764445936cca 764445936cca 764445936cca 96a7529926a0 764445936cca 5752934eb0b2 5752934eb0b2 764445936cca 5752934eb0b2 764445936cca 764445936cca 5752934eb0b2 5752934eb0b2 764445936cca 5752934eb0b2 764445936cca 764445936cca 5752934eb0b2 5752934eb0b2 764445936cca 5752934eb0b2 764445936cca 764445936cca 5752934eb0b2 5752934eb0b2 764445936cca 5752934eb0b2 764445936cca | /*
* led.c
*
* Created: 10/25/2012 10:03:22 PM
* Author: mkanning
*/
#include <avr/io.h>
#include "led.h"
void led_configure()
{
// Configure ports/pins for LEDs
}
void led_on(uint8_t led)
{
// Turn the specified LED on
}
void led_off(uint8_t led)
{
// Turn the specified LED off
}
void led_toggle(uint8_t led)
{
// Toggle the specified LED
}
|