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
 
@@ -4,21 +4,29 @@
 
 * Created: 10/25/2012 10:03:22 PM
 
 *  Author: mkanning
 
 */
 
 
 #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
 
@@ -15,14 +15,18 @@
 
 
#include <avr/io.h>
 
#include <util/delay.h>
 
 
//#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
 
	
 
}
 
 
 
 
@@ -34,11 +38,14 @@ int main(void)
 
	//serial_setup(); // Config serial ports
 
	uint8_t moduleID = io_getModuleId(); //Slave Module ID from rotary dip switch
 
	
 
	
 
    while(1)
 
    {
 
		
 
        //serial_SendCommand('0','A',0,0);
 
		
 
		
 
    }
 
	
 
	return 0;
 
}
 
\ No newline at end of file
slave/slave/slave.cproj
Show inline comments
 
@@ -71,16 +71,16 @@
 
    <Compile Include="lib\i2c.c">
 
      <SubType>compile</SubType>
 
    </Compile>
 
    <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">
 
      <SubType>compile</SubType>
 
    </Compile>
 
    <Compile Include="lib\led.h">
0 comments (0 inline, 0 general)