文件名

小写字母+下划线

stm32_hal_gpio.c
esp_http_client.c

变量名

小写字母+下划线

int32_t date_of_birth = 1991;

全局变量➕g_

uint8_t *g_wpa_username;

静态局部变量➕s_

static int8_t s_num = 0;

不可变字符串,大小写字母+下划线

static const char* LEDC_TAG = "ledc";

函数名

小写字母+下划线
设备名称_操作名称()

void adc_hal_init(void)

宏定义

大写+下划线

#define BUF_SIZE (1024)
#define GPIO_OUTPUT_IO_0    18

typedef

末尾➕_t

typedef signed char        int8_t;
typedef short              int16_t;
typedef int                int32_t;
typedef long long          int64_t;
typedef enum {
    ADC1_CHANNEL_0 = 0,
    ADC1_CHANNEL_1,     
    ADC1_CHANNEL_2,    
} adc1_channel_t;
最后修改:2021 年 03 月 11 日
男宾一位~ 欢迎下次再来!