Skip to content
Snippets Groups Projects
Select Git revision
  • a94eabde8ecaa0711eb6afd4858d649e2d2f01b9
  • master default protected
  • notification_characteristic
  • ble_pairing_confirmation
  • rahix/simple_menu
  • genofire/leds_rgb_get_state
  • genofire/rockets-state
  • genofire/ble-follow-py
  • hauke/ble-cleanups
  • plaetzchen/ios-workaround
  • blinkisync-as-preload
  • genofire/haule-ble-fs-deactive
  • schneider/max30001-pycardium
  • schneider/max30001-epicaridum
  • schneider/max30001
  • schneider/stream-locks
  • ios-workarounds
  • schneider/fundamental-test
  • schneider/ble-buffers
  • schneider/maxim-sdk-update
  • ch3/splashscreen
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
33 results

mpconfigport.h

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    etshal.h 760 B
    #ifndef _INCLUDED_ETSHAL_H_
    #define _INCLUDED_ETSHAL_H_
    
    #include <os_type.h>
    
    // see http://esp8266-re.foogod.com/wiki/Random_Number_Generator
    #define WDEV_HWRNG ((volatile uint32_t*)0x3ff20e44)
    
    void ets_delay_us();
    void ets_intr_lock(void);
    void ets_intr_unlock(void);
    void ets_isr_mask(uint32_t mask);
    void ets_isr_unmask(uint32_t mask);
    void ets_isr_attach(int irq_no, void (*handler)(void *), void *arg);
    void ets_install_putc1();
    void uart_div_modify();
    void ets_set_idle_cb(void (*handler)(void *), void *arg);
    
    void ets_timer_arm_new(os_timer_t *tim, uint32_t millis, bool repeat, bool is_milli_timer);
    void ets_timer_setfn(os_timer_t *tim, ETSTimerFunc callback, void *cb_data);
    void ets_timer_disarm(os_timer_t *tim);
    
    #endif // _INCLUDED_ETSHAL_H_