66// see http://esp8266-re.foogod.com/wiki/Random_Number_Generator
77#define WDEV_HWRNG ((volatile uint32_t*)0x3ff20e44)
88
9- void ets_delay_us ();
109void ets_intr_lock (void );
1110void ets_intr_unlock (void );
1211void ets_isr_mask (uint32_t mask );
1312void ets_isr_unmask (uint32_t mask );
1413void ets_isr_attach (int irq_no , void (* handler )(void * ), void * arg );
1514void ets_install_putc1 ();
16- void uart_div_modify ();
1715void ets_set_idle_cb (void (* handler )(void * ), void * arg );
1816
1917void ets_timer_arm_new (os_timer_t * tim , uint32_t millis , bool repeat , bool is_milli_timer );
@@ -32,12 +30,6 @@ void MD5Init(MD5_CTX *context);
3230void MD5Update (MD5_CTX * context , const void * data , unsigned int len );
3331void MD5Final (unsigned char digest [16 ], MD5_CTX * context );
3432
35- // These prototypes are for recent SDKs with "malloc tracking"
36- void * pvPortMalloc (unsigned sz , const char * fname , int line );
37- void * pvPortZalloc (unsigned sz , const char * fname , int line );
38- void * pvPortRealloc (void * p , unsigned sz , const char * fname , int line );
39- void vPortFree (void * p , const char * fname , int line );
40-
4133uint32_t SPIRead (uint32_t offset , void * buf , uint32_t len );
4234uint32_t SPIWrite (uint32_t offset , const void * buf , uint32_t len );
4335uint32_t SPIEraseSector (int sector );
0 commit comments