circuitpython/ports/renode/background.c
2024-05-17 14:56:28 -04:00

19 lines
392 B
C

// This file is part of the CircuitPython project: https://circuitpython.org
//
// SPDX-FileCopyrightText: Copyright (c) 2021 Scott Shawcroft for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#include "supervisor/port.h"
void port_start_background_tick(void) {
}
void port_finish_background_tick(void) {
}
void port_background_tick(void) {
}
void port_background_task(void) {
}