Interface Driver for Maxim DS2482 1Wire-to-I2C bridge IC. Includes access functions for DS1820 temperature sensors. Can easily be ported to other hardware by using hardware abstraction layer.

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers wait_api.cpp Source File

wait_api.cpp

00001 #include "wait_api.h"
00002 
00003 void _vWait_ms(uint32_t u32MS)
00004 {
00005     wait_us(1000*u32MS);
00006 }