Maxim Integrated's IoT development kit.

Dependencies:   MAX30101 MAX30003 MAX113XX_Pixi MAX30205 max32630fthr USBDevice

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers max30003_app.h Source File

max30003_app.h

00001 /*
00002  * max30003_app.h
00003  *
00004  *  Created on: Jun 20, 2018
00005  *      Author: Mahir.Ozturk
00006  */
00007 
00008 #ifndef MAX30003_APP_H_
00009 #define MAX30003_APP_H_
00010 
00011 #include "ble_gatt.h"
00012 
00013 struct max30003_reader_task_args {
00014     Thread *self;
00015     SPI &spiBus;
00016     PinName spiCS;
00017     GattAttribute::Handle_t gatt;
00018     int notify_period_sec;
00019 };
00020 
00021 void max30003_reader_task(struct max30003_reader_task_args *args);
00022 
00023 #endif /* MAX30003_APP_H_ */