This file contains hidden or 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
//Deprecating an Item with a define | |
#define DEPRECATED __attribute__ ((deprecated)) |
This file contains hidden or 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
// Create plot and increase size for | |
CPTScatterPlot *dataSourceLinePlot = [[CPTScatterPlot alloc] init]; | |
dataSourceLinePlot.plotSpace = plotSpace; | |
dataSourceLinePlot.identifier = colorName; | |
dataSourceLinePlot.plotSymbolMarginForHitDetection = 10.0f; |
This file contains hidden or 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
// | |
// CRC8.m | |
// | |
// Created by Chris Desch on 2/6/12. | |
// Translation from http://avrhelp.mcselec.com/index.html?crc8.htm | |
- (int)crc8Checksum:(NSString*)dataFrame{ | |
char j; | |
int crc8 = 0; |
NewerOlder