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.
Fork of LG by
SPI.h
- Committer:
- DarkPatrick
- Date:
- 2016-02-03
- Revision:
- 20:e56d63c1ca05
- Parent:
- 1:f2adcae3d304
File content as of revision 20:e56d63c1ca05:
#ifndef SPI_H #define SPI_H #define RX_SSP_notEMPT 0x00000004 extern unsigned int Temp_AMP; extern unsigned int Temp_ADC_2; extern unsigned int Temp_ADC_3; extern unsigned int Temp_ADC_4; extern unsigned int Temp_ADC_5; struct SPI { unsigned int ADC1; unsigned int ADC2; unsigned int ADC3; unsigned int ADC4; unsigned int ADC5; unsigned int DAC_A; unsigned int DAC_B; unsigned int DAC_L; }; extern unsigned int Buff_ADC_1 []; extern unsigned int Buff_ADC_2 []; extern unsigned int Buff_ADC_3 []; extern unsigned int Buff_ADC_4 []; extern unsigned int Buff_ADC_5 []; extern unsigned int Buff_AMP []; extern struct SPI Spi; extern void SPI_Exchange(); extern void Init_SPI_Exchange(); #endif // SPI_H