Changeset - 5752934eb0b2
[Not reviewed]
default
0 3 0
kripperger@CL-SEC241-09.cedarville.edu - 12 years ago 2012-11-07 20:05:47
kripperger@CL-SEC241-09.cedarville.edu
minor setup
3 files changed with 22 insertions and 7 deletions:
0 comments (0 inline, 0 general)
slave/slave/lib/led.c
Show inline comments
 
@@ -7,18 +7,26 @@
 
 
 #include <avr/io.h>
 
 
 void led_configure() {
 
 void led_configure()
 
 {
 
	 // Configure ports/pins for LEDs
 
	 
 
 }
 
 
 void led_on(uint8_t led) {
 
 void led_on(uint8_t led)
 
 {
 
	 // Turn the specified LED on
 
	 
 
 }
 
 
 void led_off(uint8_t led) {
 
 void led_off(uint8_t led)
 
 {
 
	 // Turn the specified LED off
 
	 
 
 }
 
 
 void led_toggle(uint8_t led) {
 
 void led_toggle(uint8_t led)
 
 {
 
	 // Toggle the specified LED
 
	 
 
 }
 
\ No newline at end of file
slave/slave/slave.c
Show inline comments
 
@@ -18,8 +18,12 @@
 
 
//#include "lib/serial.h"
 
#include "lib/led.h"
 
#include "lib/inputOutput.h"
 
#include "lib/i2c.h"
 
 
void micro_setup() {
 
 
void micro_setup()
 
{
 
	// Generic microcontroller config options
 
	
 
}
 
@@ -37,7 +41,10 @@ int main(void)
 
	
 
    while(1)
 
    {
 
		
 
        //serial_SendCommand('0','A',0,0);
 
		
 
		
 
    }
 
	
 
	return 0;
slave/slave/slave.cproj
Show inline comments
 
@@ -74,10 +74,10 @@
 
    <Compile Include="lib\i2c.h">
 
      <SubType>compile</SubType>
 
    </Compile>
 
    <Compile Include="lib\io.c">
 
    <Compile Include="lib\inputOutput.c">
 
      <SubType>compile</SubType>
 
    </Compile>
 
    <Compile Include="lib\io.h">
 
    <Compile Include="lib\inputOutput.h">
 
      <SubType>compile</SubType>
 
    </Compile>
 
    <Compile Include="lib\led.c">
0 comments (0 inline, 0 general)