1
0
forked from me/IronOS

creating the temperature functions

This commit is contained in:
Ben V. Brown
2016-09-20 14:33:59 +10:00
parent f700422878
commit 98ca6784a0
8 changed files with 136 additions and 217 deletions

View File

@@ -7,10 +7,17 @@
#include "I2C.h"
volatile uint32_t system_Ticks;
void delayMs(uint32_t ticks)
{
uint32_t endtime = ticks+millis();
while(millis()<endtime);
}
/******************************************************************************/
/* Processor Exceptions Handlers */
/******************************************************************************/
void NMI_Handler(void) {
;
}