├── .gitignore ├── LICENSE ├── README.md ├── cortex.md ├── c基础.md ├── driver.md ├── freertos-inside.md ├── git-inside.md ├── git.md ├── gpu.md ├── linux.md ├── makefile.md ├── res ├── IMX6UL-BD.png ├── OSImodel-8d93f19d50e543348f82110aa11f7a93.jpg ├── cortex-m0系统框图.png ├── cortex-m3系统框图.png ├── find-01.jpg ├── git-cheatsheet.png ├── git-fetch.jpg ├── https通讯过程.png ├── original-seven-layers-of-osi-model-1627523878-JYjV8oybcC.png ├── sort │ ├── bubbleSort.gif │ ├── countingSort.gif │ ├── heapSort.gif │ ├── insertionSort.gif │ ├── mergeSort.gif │ ├── quickSort.gif │ ├── radixSort.gif │ ├── selectionSort.gif │ └── sort.png └── tcp协议图解.jpg ├── shell.md ├── tcpip协议栈.md └── uboot.md /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/README.md -------------------------------------------------------------------------------- /cortex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/cortex.md -------------------------------------------------------------------------------- /c基础.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/c基础.md -------------------------------------------------------------------------------- /driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/driver.md -------------------------------------------------------------------------------- /freertos-inside.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/freertos-inside.md -------------------------------------------------------------------------------- /git-inside.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/git-inside.md -------------------------------------------------------------------------------- /git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/git.md -------------------------------------------------------------------------------- /gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/gpu.md -------------------------------------------------------------------------------- /linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/linux.md -------------------------------------------------------------------------------- /makefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/makefile.md -------------------------------------------------------------------------------- /res/IMX6UL-BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/IMX6UL-BD.png -------------------------------------------------------------------------------- /res/OSImodel-8d93f19d50e543348f82110aa11f7a93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/OSImodel-8d93f19d50e543348f82110aa11f7a93.jpg -------------------------------------------------------------------------------- /res/cortex-m0系统框图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/cortex-m0系统框图.png -------------------------------------------------------------------------------- /res/cortex-m3系统框图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/cortex-m3系统框图.png -------------------------------------------------------------------------------- /res/find-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/find-01.jpg -------------------------------------------------------------------------------- /res/git-cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/git-cheatsheet.png -------------------------------------------------------------------------------- /res/git-fetch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/git-fetch.jpg -------------------------------------------------------------------------------- /res/https通讯过程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/https通讯过程.png -------------------------------------------------------------------------------- /res/original-seven-layers-of-osi-model-1627523878-JYjV8oybcC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/original-seven-layers-of-osi-model-1627523878-JYjV8oybcC.png -------------------------------------------------------------------------------- /res/sort/bubbleSort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/sort/bubbleSort.gif -------------------------------------------------------------------------------- /res/sort/countingSort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/sort/countingSort.gif -------------------------------------------------------------------------------- /res/sort/heapSort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/sort/heapSort.gif -------------------------------------------------------------------------------- /res/sort/insertionSort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/sort/insertionSort.gif -------------------------------------------------------------------------------- /res/sort/mergeSort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/sort/mergeSort.gif -------------------------------------------------------------------------------- /res/sort/quickSort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/sort/quickSort.gif -------------------------------------------------------------------------------- /res/sort/radixSort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/sort/radixSort.gif -------------------------------------------------------------------------------- /res/sort/selectionSort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/sort/selectionSort.gif -------------------------------------------------------------------------------- /res/sort/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/sort/sort.png -------------------------------------------------------------------------------- /res/tcp协议图解.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/res/tcp协议图解.jpg -------------------------------------------------------------------------------- /shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/shell.md -------------------------------------------------------------------------------- /tcpip协议栈.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/tcpip协议栈.md -------------------------------------------------------------------------------- /uboot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaowenxia/embedded-notes/HEAD/uboot.md --------------------------------------------------------------------------------