You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
8785645a95
The port currently implements support for GPIO, RTC, ExtInt and the WiFi subsystem. A small file system is available in the serial flash. A bootloader which makes OTA updates possible, is also part of this initial implementation.
11 lines
261 B
C
11 lines
261 B
C
#ifndef HASH_H_
|
|
#define HASH_H_
|
|
|
|
extern void HASH_Init (void);
|
|
extern void HASH_SHAMD5Start (uint32_t algo, uint32_t blocklen);
|
|
extern void HASH_SHAMD5Update (uint8_t *data, uint32_t datalen);
|
|
extern void HASH_SHAMD5Read (uint8_t *hash);
|
|
|
|
|
|
#endif /* HASH_H_ */
|