This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/MCU/MCU_REAL _FINAL/menu.h

15 lines
218 B
C
Raw Normal View History

#ifndef _MENU_H_
#define _MENU_H_
#include "button.h"
2022-05-19 13:07:52 +00:00
typedef struct _menu
{
unsigned char *local;
unsigned char *len;
2022-05-19 13:07:52 +00:00
struct _menu* n;
void(*f)(struct _menu* this, enum OPR opr);
2022-05-19 13:07:52 +00:00
}Menu;
void menuInit();
#endif