Coder Social home page Coder Social logo

stm32_device's Introduction

STM32_Device


Version

  • Version-1.0.1 2019/10/22@Hades2001
    • creat this project

File tree

.
├── Hardware_Driver
│   ├── inc
│   │   ├── AT24C0x.H
│   │   ├── CODETAB (2).H
│   │   ├── Control_IO.h
│   │   ├── DS18B20.h
│   │   ├── Finger.h
│   │   ├── GPIO.h
│   │   ├── IIC.h
│   │   ├── IIC1602.h
│   │   ├── KeyScan.h
│   │   ├── LCD12864.H
│   │   ├── LED.h
│   │   ├── NTC_Temp.h
│   │   ├── NY3P065.h
│   │   ├── OLED_I2C.h
│   │   ├── OLED_SSD1306.h
│   │   ├── SC6803.h
│   │   ├── STM32_SPI.h
│   │   ├── Tiky_LCD.h
│   │   ├── Timer.h
│   │   ├── USART.h
│   │   ├── VFDSPI.h
│   │   ├── W25QXX.h
│   │   ├── WS2812.h
│   │   ├── codetab.h
│   │   ├── delay.h
│   │   └── mmc_sd.h
│   ├── scr
│   │   ├── AT24C0x.c
│   │   ├── Control_IO.c
│   │   ├── DS18B20.c
│   │   ├── Finger.c
│   │   ├── GPIO.c
│   │   ├── IIC.c
│   │   ├── IIC1602.c
│   │   ├── KeyScan.c
│   │   ├── LCD12864.c
│   │   ├── LED.c
│   │   ├── NTC_Temp.c
│   │   ├── NY3P065.c
│   │   ├── OLED_I2C.c
│   │   ├── OLED_SSD1306.c
│   │   ├── SC6803.c
│   │   ├── STM32_SPI.c
│   │   ├── Tiky_LCD.c
│   │   ├── Timer.c
│   │   ├── USART.C
│   │   ├── VFDSPI.c
│   │   ├── W25QXX.c
│   │   ├── WS2812.c
│   │   ├── delay.c
│   │   └── mmc_sd.c
│   ├── Hardware_System.c
│   └── Hardware_System.h
├── Software_Driver
│   ├── FATFS
│   │   ├── doc
│   │   │   ├── img
│   │   │   │   ├── app1.c
│   │   │   │   ├── app2.c
│   │   │   │   ├── app3.c
│   │   │   │   ├── app4.c
│   │   │   │   ├── f1.png
│   │   │   │   ├── f2.png
│   │   │   │   ├── f3.png
│   │   │   │   ├── f4.png
│   │   │   │   ├── f5.png
│   │   │   │   ├── f6.png
│   │   │   │   ├── f7.png
│   │   │   │   ├── funcs.png
│   │   │   │   ├── layers.png
│   │   │   │   ├── layers3.png
│   │   │   │   ├── modules.png
│   │   │   │   ├── rwtest.png
│   │   │   │   ├── rwtest2.png
│   │   │   │   └── rwtest3.png
│   │   │   ├── css_e.css
│   │   │   ├── css_j.css
│   │   │   └── updates.txt
│   │   ├── exfuns
│   │   │   ├── exfuns.c
│   │   │   ├── exfuns.h
│   │   │   ├── fattester.c
│   │   │   └── fattester.h
│   │   ├── src
│   │   │   ├── option
│   │   │   │   ├── cc932.c
│   │   │   │   ├── cc936.c
│   │   │   │   ├── cc949.c
│   │   │   │   ├── cc950.c
│   │   │   │   ├── ccsbcs.c
│   │   │   │   ├── syscall.c
│   │   │   │   └── unicode.c
│   │   │   ├── 00readme.txt
│   │   │   ├── diskio.c
│   │   │   ├── diskio.h
│   │   │   ├── ff.c
│   │   │   ├── ff.h
│   │   │   ├── ffconf.h
│   │   │   └── integer.h
│   │   └── FATFS.rar
│   ├── inc
│   │   ├── CAMCOM.h
│   │   ├── CAMOSD.h
│   │   ├── CamApp.h
│   │   ├── CamReg.h
│   │   ├── ControlAPP.h
│   │   ├── DataList.h
│   │   ├── ESP_AT.h
│   │   ├── ExternFlash.h
│   │   ├── ExternFlashAPP.h
│   │   ├── Flash_API.h
│   │   ├── JSON.h
│   │   ├── Malloc.h
│   │   ├── Menu_List.h
│   │   ├── OLED_GUI.h
│   │   ├── SeverAPP.h
│   │   ├── Software_GPIO.h
│   │   ├── SupCOM.h
│   │   ├── SupCOMAPP.h
│   │   ├── SysTemTime.h
│   │   ├── System_APP.h
│   │   ├── TFT_LCD_Drv.h
│   │   ├── TempAPP.h
│   │   ├── USART_TFT_API.h
│   │   └── font_ASCII.h
│   ├── scr
│   │   ├── CAMCOM.c
│   │   ├── CAMOSD.c
│   │   ├── CamApp.c
│   │   ├── CamReg.c
│   │   ├── ControlAPP.c
│   │   ├── DataList.c
│   │   ├── ESP_AT.C
│   │   ├── ExternFlashAPP.c
│   │   ├── Flash_API.c
│   │   ├── JSON.c
│   │   ├── Malloc.c
│   │   ├── Menu_List.c
│   │   ├── OLED_GUI.c
│   │   ├── SeverAPP.c
│   │   ├── Software_GPIO.c
│   │   ├── SupCOM.c
│   │   ├── SupCOMAPP.c
│   │   ├── SystemTime.c
│   │   ├── System_APP.c
│   │   ├── TFT_LCD_Drv.c
│   │   ├── TempAPP.c
│   │   └── USART_TFT_API.c
│   ├── Software_System.c
│   └── Software_System.h
├── URL_Driver
│   ├── BSP_System.c
│   └── BSP_System.h
├── SysConfig.h
├── SysDef.h
├── System.h
└── User_Driver.rar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.