Skip to content

Instantly share code, notes, and snippets.

View EJackYang's full-sized avatar
Keep Going !

Jack Yang EJackYang

Keep Going !
View GitHub Profile
@EJackYang
EJackYang / README.md
Last active January 13, 2024 19:13
ESP-IDF 使用简述

Espressif 乐鑫IDF 使用简述

Requirements

  • git clone the IDF.git
  • ./install.sh
  • source export.sh

Get-starts

  • cp the Template projects
  • idf.dy set-target [esp32|esp32s3|...]
  • idf.dy menuconfig
  • idf.dy build
@EJackYang
EJackYang / README.md
Created January 12, 2024 08:22
标准头文件结构

C语言 标准头文件书写 里面放置的是函数声明

#ifndef _LIST_HEAD_  
#def _LIST_HEAD_

...

#endif
@EJackYang
EJackYang / README.md
Last active January 11, 2024 16:25
C语言 带参数宏 预编译器

C语言 带参数宏 预编译器

#include<stdio.h>

#define PRETYY_PRINT(msg) printf(msg);

int main(void){
	PRETYY_PRINT("doi with lucky");
	return 0;
}
@EJackYang
EJackYang / README.md
Last active January 10, 2024 17:11
Resizeable Array

C语言 可变数组

#include<stdio.h>
#include<stdlib.h>
#include<string.h>

typedef struct{
	int* array;
	int size;
}Array;
@EJackYang
EJackYang / my-first-gist.md
Created December 27, 2023 03:13
My First Github Gist

Summary

正如 Github Gist 宣传所言 Instantly share code,notes,and snippets