more docs and added the import_config.h file to controlle which c++ libraries are added

This commit is contained in:
ZennDev1337 2023-08-16 09:58:14 +02:00
parent c4f43a0f9d
commit fd48cc36c5
7 changed files with 73 additions and 21 deletions

View file

@ -7,4 +7,5 @@ edition = "2021"
crate-type = ["staticlib"]
[dependencies]
arduboy-rust = { path = "../../arduboy-rust" }

View file

@ -1,6 +1,9 @@
#![no_std]
#![allow(non_upper_case_globals)]
#[no_mangle]
pub static ArduboyTones_Library: u8 = 1;
//Include the Arduboy Library
#[allow(unused_imports)]
use arduboy_rust::prelude::*;