summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/app/app_status.c
blob: 1d95728a2bcd4dd7ff9aa299abce81c69c6b95ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdlib.h>

#include "eve/eve.h"
#include "eve/eve_kbd.h"
#include "eve/eve_font.h"

#include "eve/screen/window.h"

#include "app_status.h"

uint8_t app_status_draw(EVEView *view, uint8_t tag0) {
    return eve_view_clear(view, tag0);
}

int app_status_touch(EVEView *view, EVETouch *touch, uint16_t evt, uint8_t tag0) {
    return 0;
}