Skip to content
Snippets Groups Projects
Select Git revision
  • 53e3b1d57f3e20319239c246fea6902e7e1a316f
  • master default
  • test
  • rahix/hw-lock-new-mutex
  • dx/somewhat-more-dynamic-config
  • schneider/sdk-0.2.1-7
  • schneider/bsec
  • dx/meh-bdf-to-stm
  • dx/flatten-config-module
  • genofire/ble-follow-py
  • schneider/ble-stability
  • schneider/ble-stability-new-phy
  • add_menu_vibration
  • plaetzchen/ios-workaround
  • blinkisync-as-preload
  • schneider/max30001-pycardium
  • schneider/max30001-epicaridum
  • schneider/max30001
  • schneider/stream-locks
  • schneider/fundamental-test
  • schneider/ble-buffers
  • v1.12
  • v1.11
  • v1.10
  • v1.9
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
37 results

display.h

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    lib.rs 381 B
    #![no_std]
    
    pub use max32665;
    pub use cortex_m_rt as _;
    pub use cortex_m_rt::entry;
    
    pub mod lcd;
    
    #[link(name = "card10")]
    extern {
        fn card10_init();
        fn card10_diag();
    }
    
    #[no_mangle]
    pub extern "C" fn puts() {
        /* Stub */
    }
    
    #[no_mangle]
    pub extern "C" fn printf() {
        /* Stub */
    }
    
    pub fn init() {
        unsafe {
            card10_init();
            card10_diag();
        }
    }