ME11C Sample Code in Maxim Integrated Team

Dependencies:   BMI160 max32630hsp3 MemoryLCD USBDevice

Fork of Host_Software_MAX32664GWEC_SpO2_HR-_EXTE by Seyhmus Cacina

demoUI/demoUI.h

Committer:
seyhmuscacina
Date:
2019-03-25
Revision:
2:3b5d2467e6c7
Parent:
0:b259fd1a88f5

File content as of revision 2:3b5d2467e6c7:

/*
 * demoUI.h
 *
 *  Created on: Nov 29, 2018
 *      Author: Yagmur.Gok
 */

#ifndef SOURCE_DEMOUI_DEMOUI_H_
#define SOURCE_DEMOUI_DEMOUI_H_

#include <events/mbed_events.h>
#include <mbed.h>

#include "screen/LS013B7DH03.h"

enum{
	DISPLAY_WHRM            = 0,
	DISPLAY_WSPo2           = 1,
	DISPLAY_ContiniousWSPo2 = 2
};

#define USE_DEMO_DISPDEV
#if defined(USE_DEMO_DISPDEV)


	void demoUI_init();
	void demoUI_display_algo_estimations(int integer , int confidence);
	void demoUI_display_set_algoMode(int algo);
	int demoUI_display_get_mode(void);
	void demoUI_display(int algoResult);
	void demoUI_display_bootldr_screen(void);


#else
	void start_demo_display(void);
	void display_algo_estimations( uint8_t mode , int integer, int fraction);
	void setup_mode_button(void);

#endif


extern volatile uint8_t algoMode;

#endif /* SOURCE_DEMOUI_DEMOUI_H_ */