This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SPI.h> | |
#include <AIR430BoostFCC.h> | |
// ----------------------------------------------------------------------------- | |
/** | |
* Defines, enumerations, and structure definitions | |
*/ | |
#define ADDRESS_LOCAL 0x02 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//use bitlash fork from https://github.com/murix/bitlash | |
#include "bitlash.h" | |
// | |
#include <SPI.h> | |
#include <AIR430BoostFCC.h> | |
#define ADDRESS_LOCAL 0x01 | |
#define ADDRESS_REMOTE 0x02 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//use bitlash fork from https://github.com/murix/bitlash | |
#include "bitlash.h" | |
#include <stdio.h> | |
// | |
#include <SPI.h> | |
#include <AIR430BoostFCC.h> | |
#define ADDRESS_LOCAL 0x02 | |
#define ADDRESS_REMOTE 0x01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <avr/io.h> | |
#include <util/delay.h> | |
#include <stdio.h> | |
#define TPC_PIN_INPUT() DDRD &= ~_BV(6) | |
#define TPC_PIN_OUTPUT() DDRD |= _BV(6) | |
#define TPC_PIN_ON() PORTD |= _BV(6) | |
#define TPC_PIN_OFF() PORTD &= ~_BV(6) | |
#define TPC_PIN_IS_ON() bit_is_set(PIND, 6) | |
#define TPC_PIN_IS_OFF() bit_is_clear(PIND, 6) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//////////////////////////////////////////////////////////////////////////////// | |
// PIC18F4480 Configuration Bit Settings | |
// 'C' source line config statements | |
#include <xc.h> | |
// #pragma config statements should precede project file includes. | |
// Use project enums instead of #define for ON and OFF. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///////////////////////////////////////////////////////////////////////////////// | |
// PIC18F24J50 Configuration Bit Settings | |
// 'C' source line config statements | |
#include <xc.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//////////////////////////////////////////////////////////////////////////////// | |
// PIC16F876A Configuration Bit Settings | |
// 'C' source line config statements | |
#include <xc.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Energia 0101E0012 (03/18/2014) | |
// http://energia.nu/download/ | |
#include <Wire.h> | |
//printf | |
#include <stdarg.h> | |
void p(char *fmt, ... ){ | |
char buf[128]; | |
va_list args; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Energia 0101E0012 (03/18/2014) | |
// http://energia.nu/download/ | |
#include <Wire.h> | |
//printf | |
#include <stdarg.h> | |
void p(char *fmt, ... ){ | |
char buf[128]; | |
va_list args; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
var b = require('bonescript'); | |
// configure PWM pins as output | |
b.pinMode('P8_13', b.OUTPUT); | |
b.pinMode('P8_19', b.OUTPUT); | |
b.pinMode('P9_14', b.OUTPUT); | |
b.pinMode('P9_16', b.OUTPUT); |