trezor-core/extmod/modTrezorUi/modTrezorUi.c

50 lines
1.2 KiB
C
Raw Normal View History

2016-03-27 14:10:31 -07:00
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under Microsoft Reference Source License (Ms-RSL)
* see LICENSE.md file for details
*/
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include "py/nlr.h"
#include "py/runtime.h"
#include "py/binary.h"
#if MICROPY_PY_TREZORUI
#define RESX 240
#define RESY 240
2016-04-03 16:46:46 -07:00
#if defined STM32_HAL_H
#include "modTrezorUi-stmhal.h"
#elif defined UNIX
#include "modTrezorUi-unix.h"
#else
#error Unsupported port. Only STMHAL and UNIX ports are supported.
#endif
#include "modTrezorUi-display.h"
2016-04-03 16:46:46 -07:00
#include "modTrezorUi-touch.h"
2016-03-31 11:13:45 -07:00
// module stuff
2016-03-27 14:10:31 -07:00
STATIC const mp_rom_map_elem_t mp_module_TrezorUi_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_TrezorUi) },
{ MP_ROM_QSTR(MP_QSTR_Display), MP_ROM_PTR(&mod_TrezorUi_Display_type) },
2016-03-31 11:13:45 -07:00
{ MP_ROM_QSTR(MP_QSTR_Touch), MP_ROM_PTR(&mod_TrezorUi_Touch_type) },
2016-03-27 14:10:31 -07:00
};
STATIC MP_DEFINE_CONST_DICT(mp_module_TrezorUi_globals, mp_module_TrezorUi_globals_table);
const mp_obj_module_t mp_module_TrezorUi = {
.base = { &mp_type_module },
.name = MP_QSTR_TrezorUi,
.globals = (mp_obj_dict_t*)&mp_module_TrezorUi_globals,
};
#endif // MICROPY_PY_TREZORUI