mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
66 lines
2.2 KiB
C
66 lines
2.2 KiB
C
/*
|
|
* This file is part of the TREZOR project, https://trezor.io/
|
|
*
|
|
* Copyright (c) SatoshiLabs
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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/>.
|
|
*/
|
|
|
|
#include "sbu.h"
|
|
|
|
/// class SBU:
|
|
/// '''
|
|
/// '''
|
|
typedef struct _mp_obj_SBU_t {
|
|
mp_obj_base_t base;
|
|
} mp_obj_SBU_t;
|
|
|
|
/// def __init__(self) -> None:
|
|
/// '''
|
|
/// '''
|
|
STATIC mp_obj_t mod_trezorio_SBU_make_new(const mp_obj_type_t *type,
|
|
size_t n_args, size_t n_kw,
|
|
const mp_obj_t *args) {
|
|
mp_arg_check_num(n_args, n_kw, 0, 0, false);
|
|
mp_obj_SBU_t *o = m_new_obj(mp_obj_SBU_t);
|
|
o->base.type = type;
|
|
sbu_init();
|
|
return MP_OBJ_FROM_PTR(o);
|
|
}
|
|
|
|
/// def set(self, sbu1: bool, sbu2: bool) -> None:
|
|
/// '''
|
|
/// Sets SBU wires to sbu1 and sbu2 values respectively
|
|
/// '''
|
|
STATIC mp_obj_t mod_trezorio_SBU_set(mp_obj_t self, mp_obj_t sbu1,
|
|
mp_obj_t sbu2) {
|
|
sbu_set(sectrue * mp_obj_is_true(sbu1), sectrue * mp_obj_is_true(sbu2));
|
|
return mp_const_none;
|
|
}
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_3(mod_trezorio_SBU_set_obj,
|
|
mod_trezorio_SBU_set);
|
|
|
|
STATIC const mp_rom_map_elem_t mod_trezorio_SBU_locals_dict_table[] = {
|
|
{MP_ROM_QSTR(MP_QSTR_set), MP_ROM_PTR(&mod_trezorio_SBU_set_obj)},
|
|
};
|
|
STATIC MP_DEFINE_CONST_DICT(mod_trezorio_SBU_locals_dict,
|
|
mod_trezorio_SBU_locals_dict_table);
|
|
|
|
STATIC const mp_obj_type_t mod_trezorio_SBU_type = {
|
|
{&mp_type_type},
|
|
.name = MP_QSTR_SBU,
|
|
.make_new = mod_trezorio_SBU_make_new,
|
|
.locals_dict = (void *)&mod_trezorio_SBU_locals_dict,
|
|
};
|