-
Notifications
You must be signed in to change notification settings - Fork 654
/
Copy pathlib.rs
56 lines (45 loc) · 1.24 KB
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright © SixtyFPS GmbH <[email protected]>
// SPDX-License-Identifier: MIT
// cSpell: ignore deque pico
#![doc = include_str!("README.md")]
#![doc(html_logo_url = "https://slint.dev/logo/slint-logo-square-light.svg")]
#![no_std]
extern crate alloc;
#[cfg(feature = "pico-st7789")]
mod pico_st7789;
#[cfg(feature = "pico-st7789")]
pub use pico_st7789::*;
#[cfg(feature = "pico2-st7789")]
mod pico2_st7789;
#[cfg(feature = "pico2-st7789")]
pub use pico2_st7789::*;
#[cfg(feature = "stm32h735g")]
mod stm32h735g;
#[cfg(feature = "stm32h735g")]
pub use stm32h735g::*;
#[cfg(feature = "stm32u5g9j-dk2")]
mod stm32u5g9j_dk2;
#[cfg(feature = "stm32u5g9j-dk2")]
pub use stm32u5g9j_dk2::*;
// #[cfg(feature = "esp32-s3-box")]
// mod esp32_s3_box;
// #[cfg(feature = "esp32-s3-box")]
// pub use esp32_s3_box::*;
#[cfg(not(any(
feature = "pico-st7789",
feature = "pico2-st7789",
feature = "stm32h735g",
feature = "stm32u5g9j-dk2",
// feature = "esp32-s3-box"
)))]
pub use i_slint_core_macros::identity as entry;
#[cfg(not(any(
feature = "pico-st7789",
feature = "pico2-st7789",
feature = "stm32h735g",
feature = "stm32u5g9j-dk2",
// feature = "esp32-s3-box"
)))]
pub fn init() {}
#[cfg(feature = "stm32u5g9j-dk2")]
mod embassy;