-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.h
108 lines (91 loc) · 4.16 KB
/
menu.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/**
menu.h: openchronos-ng menu system
Copyright (C) 2012 Angelo Arrifano <[email protected]>
Copyright (C) 2016 Benjamin Sølberg <[email protected]>
http://github.com/BenjaminSoelberg/openchronos-ng-elf
This file is part of openchronos-ng.
openchronos-ng is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
openchronos-ng is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
/*!
\file menu.h
\brief Menu include file
*/
#ifndef __MENU_H__
#define __MENU_H__
#include <msp430.h>
#include <stdlib.h>
#include <stdint.h>
/*!
\brief Adds an entry to the main menu.
\details This function is to be used by modules, so that they can be visible in the main menu. A good place to call this function is from the corresponding module's _init function.
\note This function is NULL safe. You can set all of its parameters to NULL (except name) if you don't need their functionality.
\note The <i>name</i> string cannot be longer than 5 characters due to the LCD screen size.
*/
struct menu * menu_add_entry(
char const * name, /*!< item name to be displayed in the menu */
void (*up_btn_fn)(void), /*!< callback for up button presses. */
void (*down_btn_fn)(void), /*!< callback for down button presses. */
void (*num_btn_fn)(void), /*!< callback for num button presses. */
void (*lstar_btn_fn)(void), /*!< callback for long star button presses. */
void (*lnum_btn_fn)(void), /*!< callback for long num button presses. */
void (*updown_btn_fn)(void),/*!< callback for up&down button presses. */
void (*activate_fn)(void), /*!< callback for when the user switches into this entry in the menu. */
void (*deactivate_fn)(void) /*!< callback for when the user switches out from this entry in the menu. */
);
/*!
\brief A item structure for menu_editmode_start.
*/
struct menu_editmode_item {
void (* select)(void); /*!< item selected callback */
void (* deselect)(void); /*!< item deselected callback */
void (* set)(int8_t step); /*!< set value of item callback */
};
/*!
\brief Enters edit mode.
\details The edit mode is a mechanism that allows the user to change values being displayed in the screen. For example, if a clock alarm is being displayed, then edit mode can be used to increase/decrease the values of hours and minutes. A good place to call this function is from the module's lstar_btn_fn function (see menu_add_entry()).<br />
See modules/alarm.c for an example how to use this.
*/
void menu_editmode_start(
/*! callback for when the user exits from the edit mode.*/
void (* complete_fn)(void),
/*! callback for when the idle count canceles the edit mode.*/
void (* cancel_fn)(void),
/*! A vector of #menu_editmode_item, it must be NULL terminated! */
struct menu_editmode_item *items
);
/* Menu definitions and declarations */
struct menu {
/* menu item name */
char const * name;
/* Pointer to up button handler */
void (*up_btn_fn)(void);
/* Pointer to down button handler */
void (*down_btn_fn)(void);
/* Pointer to function button (NUM) */
void (*num_btn_fn)(void);
/* Pointer to settings button (long STAR) */
void (*lstar_btn_fn)(void);
/* Pointer to function button (long NUM) */
void (*lnum_btn_fn)(void);
/* Pointer to simultaneous up&down press */
void (*updown_btn_fn)(void);
/* Pointer to activate function */
void (*activate_fn)(void);
/* Pointer to deactivate function */
void (*deactivate_fn)(void);
/* pointer to next menu item */
struct menu *next;
struct menu *prev;
};
void menu_check_buttons(void);
void menu_timeout_poll(void);
#endif /* __MENU_H__ */