基本信息
源码名称:EEZ DIB电源的mio168模块完整资料
源码大小:3.73M
文件格式:.rar
开发语言:C/C++
更新时间:2021-04-03
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
EEZ DIB电源的mio168模块完整资料
老外多功能实验电源的mio168模块资料

dib-mio168

├── dib-mio168-FW
│   ├── Core
│   │   ├── Inc
│   │   │   ├── adc.h
│   │   │   ├── dac7563.h
│   │   │   ├── dac7760.h
│   │   │   ├── din.h
│   │   │   ├── din_dlog.h
│   │   │   ├── dlog.h
│   │   │   ├── dlog_file.h
│   │   │   ├── dout.h
│   │   │   ├── firmware.h
│   │   │   ├── main.h
│   │   │   ├── pwm.h
│   │   │   ├── stm32f4xx_hal_conf.h
│   │   │   ├── stm32f4xx_it.h
│   │   │   ├── unit.h
│   │   │   └── utils.h
│   │   ├── Src
│   │   │   ├── adc.cpp
│   │   │   ├── dac7563.cpp
│   │   │   ├── dac7760.cpp
│   │   │   ├── din.cpp
│   │   │   ├── din_dlog.cpp
│   │   │   ├── dlog.cpp
│   │   │   ├── dlog_file.cpp
│   │   │   ├── dout.cpp
│   │   │   ├── firmware.cpp
│   │   │   ├── main.c
│   │   │   ├── pwm.cpp
│   │   │   ├── stm32f4xx_hal_msp.c
│   │   │   ├── stm32f4xx_it.c
│   │   │   ├── syscalls.c
│   │   │   ├── sysmem.c
│   │   │   ├── system_stm32f4xx.c
│   │   │   └── utils.cpp
│   │   └── Startup
│   │       └── startup_stm32f446zctx.s
│   ├── Drivers
│   │   ├── CMSIS
│   │   │   ├── Device
│   │   │   │   └── ST
│   │   │   │       └── STM32F4xx
│   │   │   │           └── Include
│   │   │   │               ├── stm32f446xx.h
│   │   │   │               ├── stm32f4xx.h
│   │   │   │               └── system_stm32f4xx.h
│   │   │   └── Include
│   │   │       ├── cmsis_armcc.h
│   │   │       ├── cmsis_armclang.h
│   │   │       ├── cmsis_compiler.h
│   │   │       ├── cmsis_gcc.h
│   │   │       ├── cmsis_iccarm.h
│   │   │       ├── cmsis_version.h
│   │   │       ├── core_armv8mbl.h
│   │   │       ├── core_armv8mml.h
│   │   │       ├── core_cm0.h
│   │   │       ├── core_cm0plus.h
│   │   │       ├── core_cm1.h
│   │   │       ├── core_cm23.h
│   │   │       ├── core_cm3.h
│   │   │       ├── core_cm33.h
│   │   │       ├── core_cm4.h
│   │   │       ├── core_cm7.h
│   │   │       ├── core_sc000.h
│   │   │       ├── core_sc300.h
│   │   │       ├── mpu_armv7.h
│   │   │       ├── mpu_armv8.h
│   │   │       └── tz_context.h
│   │   └── STM32F4xx_HAL_Driver
│   │       ├── Inc
│   │       │   ├── Legacy
│   │       │   │   └── stm32_hal_legacy.h
│   │       │   ├── stm32f4xx_hal.h
│   │       │   ├── stm32f4xx_hal_cortex.h
│   │       │   ├── stm32f4xx_hal_crc.h
│   │       │   ├── stm32f4xx_hal_def.h
│   │       │   ├── stm32f4xx_hal_dma.h
│   │       │   ├── stm32f4xx_hal_dma_ex.h
│   │       │   ├── stm32f4xx_hal_exti.h
│   │       │   ├── stm32f4xx_hal_flash.h
│   │       │   ├── stm32f4xx_hal_flash_ex.h
│   │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │       │   ├── stm32f4xx_hal_gpio.h
│   │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │       │   ├── stm32f4xx_hal_pwr.h
│   │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │       │   ├── stm32f4xx_hal_rcc.h
│   │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │       │   ├── stm32f4xx_hal_sd.h
│   │       │   ├── stm32f4xx_hal_spi.h
│   │       │   ├── stm32f4xx_hal_tim.h
│   │       │   ├── stm32f4xx_hal_tim_ex.h
│   │       │   └── stm32f4xx_ll_sdmmc.h
│   │       └── Src
│   │           ├── stm32f4xx_hal.c
│   │           ├── stm32f4xx_hal_cortex.c
│   │           ├── stm32f4xx_hal_crc.c
│   │           ├── stm32f4xx_hal_dma.c
│   │           ├── stm32f4xx_hal_dma_ex.c
│   │           ├── stm32f4xx_hal_exti.c
│   │           ├── stm32f4xx_hal_flash.c
│   │           ├── stm32f4xx_hal_flash_ex.c
│   │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │           ├── stm32f4xx_hal_gpio.c
│   │           ├── stm32f4xx_hal_pwr.c
│   │           ├── stm32f4xx_hal_pwr_ex.c
│   │           ├── stm32f4xx_hal_rcc.c
│   │           ├── stm32f4xx_hal_rcc_ex.c
│   │           ├── stm32f4xx_hal_sd.c
│   │           ├── stm32f4xx_hal_spi.c
│   │           ├── stm32f4xx_hal_tim.c
│   │           ├── stm32f4xx_hal_tim_ex.c
│   │           └── stm32f4xx_ll_sdmmc.c
│   ├── FATFS
│   │   ├── App
│   │   │   ├── fatfs.c
│   │   │   └── fatfs.h
│   │   └── Target
│   │       ├── bsp_driver_sd.c
│   │       ├── bsp_driver_sd.h
│   │       ├── fatfs_platform.c
│   │       ├── fatfs_platform.h
│   │       ├── ffconf.h
│   │       ├── sd_diskio.c
│   │       └── sd_diskio.h
│   ├── LICENSE.TXT
│   ├── Middlewares
│   │   └── Third_Party
│   │       └── FatFs
│   │           └── src
│   │               ├── diskio.c
│   │               ├── diskio.h
│   │               ├── ff.c
│   │               ├── ff.h
│   │               ├── ff_gen_drv.c
│   │               ├── ff_gen_drv.h
│   │               ├── integer.h
│   │               └── option
│   │                   ├── ccsbcs.c
│   │                   └── syscall.c
│   ├── README.md
│   ├── STM32F446ZCTX_FLASH.ld
│   ├── STM32F446ZCTX_RAM.ld
│   ├── mio168-firmware Debug.cfg
│   ├── mio168-firmware Debug.launch
│   ├── mio168-firmware-r1b5.ioc
│   └── mio168-firmware.ioc
└── dib-mio168-HW
    ├── BOM
    │   ├── EEZ DIB MIO168 r2B4.ods
    │   └── EEZ DIB MIO168 r2B4.pdf
    ├── CONTRIB.TXT
    ├── CubeMX
    │   ├── MIO168 r2B4.ioc
    │   ├── MIO168 r2B4.pdf
    │   └── MIO168 r2B4.txt
    ├── EDA files
    │   ├── EEZ DIB MIO168 r2B4.brd
    │   └── EEZ DIB MIO168 r2B4.sch
    ├── EEZ DIB MIO168 r2B4 Sheet1of6.png
    ├── EEZ DIB MIO168 r2B4 Sheet2of6.png
    ├── EEZ DIB MIO168 r2B4 Sheet3of6.png
    ├── EEZ DIB MIO168 r2B4 Sheet4of6.png
    ├── EEZ DIB MIO168 r2B4 Sheet5of6.png
    ├── EEZ DIB MIO168 r2B4 Sheet6of6.png
    ├── EEZ DIB MIO168 r2B4.pdf
    ├── Gerber files
    │   ├── EEZ DIB MIO168 r2B4.G2L
    │   ├── EEZ DIB MIO168 r2B4.G3L
    │   ├── EEZ DIB MIO168 r2B4.GBL
    │   ├── EEZ DIB MIO168 r2B4.GBO
    │   ├── EEZ DIB MIO168 r2B4.GBS
    │   ├── EEZ DIB MIO168 r2B4.GKO
    │   ├── EEZ DIB MIO168 r2B4.GTL
    │   ├── EEZ DIB MIO168 r2B4.GTO
    │   ├── EEZ DIB MIO168 r2B4.GTS
    │   ├── EEZ DIB MIO168 r2B4.TXT
    │   └── EEZ DIB MIO168 r2B4.zip
    ├── Images
    │   ├── EEZ_DIB_MIO168_PCB_bottom.png
    │   ├── EEZ_DIB_MIO168_PCB_parts.png
    │   ├── EEZ_DIB_MIO168_PCB_top.png
    │   └── MIO168_prototype_r2B2.JPG
    ├── LICENSE.TXT
    ├── Mechanical
    │   ├── MIO168 r2B3 front panel.dxf
    │   └── MIO168 r2B3 front panel.png
    └── README.md

31 directories, 158 files