You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
263 B
16 lines
263 B
8 years ago
|
//
|
||
|
// Created by MightyPork on 2017/10/15.
|
||
|
//
|
||
|
|
||
|
#ifndef TF_UTILS_H
|
||
|
#define TF_UTILS_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include "../TinyFrame.h"
|
||
|
|
||
|
typedef unsigned char* pu8;
|
||
|
void dumpFrame(const uint8_t *buff, size_t len);
|
||
|
void dumpFrameInfo(TF_MSG *msg);
|
||
|
|
||
|
#endif //TF_UTILS_H
|