mirror of
https://github.com/gosticks/RIOT.git
synced 2025-10-16 12:05:37 +00:00
14 lines
419 B
C
14 lines
419 B
C
#ifndef CC3200_WIFI_UTILS
|
|
#define CC3200_WIFI_UTILS
|
|
|
|
#include "proto.h"
|
|
|
|
#define alignDataLen(len) ((len) + 3) & (~3)
|
|
extern void __attribute__((naked)) delay(unsigned long count);
|
|
void printChars(char *str, uint16_t len);
|
|
void maskWifiInterrupt(void);
|
|
void unmaskWifiInterrupt(void);
|
|
CC3200_RomInfo *getDeviceRomInfo(void);
|
|
// uint16_t alignDataLen(uint16_t len);
|
|
void sliceFirstInBuffer(uint8_t *buf, int len);
|
|
#endif |