You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
399 B
14 lines
399 B
// SPDX-FileCopyrightText: 2020 Foundation Devices, Inc. <hello@foundationdevices.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
//
|
|
|
|
#ifndef STM32_MODFOUNDATION_H
|
|
#define STM32_MODFOUNDATION_H
|
|
#include "py/obj.h"
|
|
|
|
extern ring_buffer_t keybuf;
|
|
|
|
extern const mp_obj_type_t lcd_type;
|
|
extern const mp_obj_type_t backlight_type;
|
|
extern const mp_obj_type_t keypad_type;
|
|
#endif //STM32_MODFOUNDATION_H
|
|
|