Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
ds1990.h
- Committer:
- Renato
- Date:
- 2013-08-23
- Revision:
- 0:4f399e4b64a9
File content as of revision 0:4f399e4b64a9:
#ifndef _DS1990_
#define _DS1990_
#include <stdint.h>
#include "mbed.h"
// Device Faimly ID and Setial number information
typedef union {
uint8_t rom[8];
struct {
uint8_t familyCode;
uint8_t serialNo[8];
uint8_t CRC;
} BYTES;
} ROM_Code_t;
ROM_Code_t ReadROM();
#endif