2021-08-08 18:03:25 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <furi-hal-i2c.h>
|
|
|
|
#include <furi-hal-light.h>
|
2021-08-12 08:48:05 +00:00
|
|
|
#include <furi-hal-resources.h>
|
|
|
|
#include <furi-hal-spi.h>
|
2021-10-21 12:24:34 +00:00
|
|
|
#include <furi-hal-version.h>
|
2021-08-08 18:03:25 +00:00
|
|
|
|
2021-10-17 20:34:36 +00:00
|
|
|
#define furi_assert(value) (void)(value)
|
|
|
|
|
|
|
|
void furi_hal_init();
|
|
|
|
|
|
|
|
void delay(float milliseconds);
|
|
|
|
|
|
|
|
void delay_us(float microseconds);
|