mirror of
https://github.com/pvvx/ESP8266.git
synced 2025-07-25 21:01:02 +03:00
first commit
This commit is contained in:
83
Espressif_ESP8089_SDIO_WiFi/esp8089/esp_debug.h
Normal file
83
Espressif_ESP8089_SDIO_WiFi/esp8089/esp_debug.h
Normal file
@ -0,0 +1,83 @@
|
||||
/*
|
||||
* Copyright (c) 2011 Espressif System.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _DEBUG_H_
|
||||
|
||||
#define assert(v) BUG_ON(!(v))
|
||||
|
||||
#define ASSERT(v) BUG_ON(!(v))
|
||||
|
||||
#include <linux/slab.h>
|
||||
#include <linux/debugfs.h>
|
||||
#include <asm/uaccess.h>
|
||||
|
||||
typedef enum esp_type {
|
||||
ESP_BOOL,
|
||||
ESP_U8,
|
||||
ESP_U16,
|
||||
ESP_U32,
|
||||
ESP_U64
|
||||
} esp_type;
|
||||
|
||||
struct dentry *esp_dump_var(const char *name, struct dentry *parent, void *value, esp_type type);
|
||||
|
||||
struct dentry *esp_dump_array(const char *name, struct dentry *parent, struct debugfs_blob_wrapper *blob);
|
||||
|
||||
struct dentry *esp_dump(const char *name, struct dentry *parent, void *data, int size);
|
||||
|
||||
struct dentry *esp_debugfs_add_sub_dir(const char *name);
|
||||
|
||||
int esp_debugfs_init(void);
|
||||
|
||||
void esp_debugfs_exit(void);
|
||||
|
||||
enum {
|
||||
ESP_DBG_ERROR = BIT(0),
|
||||
ESP_DBG_TRACE = BIT(1),
|
||||
ESP_DBG_LOG = BIT(2),
|
||||
ESP_DBG = BIT(3),
|
||||
ESP_SHOW = BIT(4),
|
||||
ESP_DBG_TXAMPDU = BIT(5),
|
||||
ESP_DBG_OP = BIT(6),
|
||||
ESP_DBG_PS = BIT(7),
|
||||
ESP_DBG_ALL = 0xffffffff
|
||||
};
|
||||
|
||||
extern unsigned int esp_msg_level;
|
||||
|
||||
#ifdef ESP_ANDROID_LOGGER
|
||||
extern bool log_off;
|
||||
#endif /* ESP_ANDROID_LOGGER */
|
||||
|
||||
#if defined(ANDROID) && defined(ESP_ANDROID_LOGGER)
|
||||
#include "esp_android.h"
|
||||
#define esp_dbg(mask, fmt, args...) do { \
|
||||
if (esp_msg_level & mask) \
|
||||
{ \
|
||||
if (log_off) \
|
||||
printk(fmt, ##args); \
|
||||
else \
|
||||
logger_write(4, "esp_wifi", fmt, ##args); \
|
||||
} \
|
||||
} while (0)
|
||||
#else
|
||||
#define esp_dbg(mask, fmt, args...) do { \
|
||||
if (esp_msg_level & mask) \
|
||||
printk(fmt, ##args); \
|
||||
} while (0)
|
||||
#endif /* ANDROID && ESP_ANDROID_LOGGER */
|
||||
|
||||
void show_buf(u8 *buf, u32 len);
|
||||
|
||||
#ifdef HOST_RC
|
||||
struct sip_rc_status;
|
||||
struct ieee80211_tx_rate;
|
||||
|
||||
void esp_show_rcstatus(struct sip_rc_status *rcstatus);
|
||||
|
||||
void esp_show_tx_rates(struct ieee80211_tx_rate *rates);
|
||||
#endif /* HOST_RC */
|
||||
|
||||
#endif /* _DEBUG_H_ */
|
Reference in New Issue
Block a user