-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoverlay_startup.h
60 lines (42 loc) · 2.05 KB
/
overlay_startup.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* overlay_startup.h
*
* Created on: Mar 11, 2024
* Author: micahbly
*/
#ifndef OVERLAY_STARTUP_H_
#define OVERLAY_STARTUP_H_
/* about this class
*
* Routines for starting up f/manager, including show splash screen(s)
* Some code here originated in sys.c and other places before being moved here
*
*/
/*****************************************************************************/
/* Includes */
/*****************************************************************************/
#include "app.h"
#include "text.h"
#include <stdint.h>
/*****************************************************************************/
/* Macro Definitions */
/*****************************************************************************/
/*****************************************************************************/
/* Enumerations */
/*****************************************************************************/
/*****************************************************************************/
/* Structs */
/*****************************************************************************/
/*****************************************************************************/
/* Public Function Prototypes */
/*****************************************************************************/
// load strings into memory and set up string pointers
void Startup_LoadString(void);
// clear screen and show app (foenix) logo, and machine logo if running from flash
void Startup_ShowLogo(void);
// enable the random number generator, and seed it
void Startup_InitializeRandomNumGen(void);
// initialize or re-initialize the global dialog box for standard 2-button entry
// some routine may change it temporarily to 3-button format/size
void App_InitializeDialogBox(void);
#endif /* OVERLAY_STARTUP_H_ */