mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-17 18:31:36 +03:00
15 lines
260 B
C
15 lines
260 B
C
#pragma once
|
|
|
|
#include <furi-hal-i2c.h>
|
|
#include <furi-hal-light.h>
|
|
#include <furi-hal-resources.h>
|
|
#include <furi-hal-spi.h>
|
|
|
|
#define furi_assert(value) (void)(value)
|
|
|
|
void furi_hal_init();
|
|
|
|
void delay(float milliseconds);
|
|
|
|
void delay_us(float microseconds);
|