├── AD9910(DDS) ├── AD9910.H ├── AD9910.c ├── AD9910_RAM_Data.c └── readme.txt ├── AD9959(DDS) ├── AD9959_NEW.C ├── AD9959_NEW.H └── readme.txt ├── LICENSE ├── PE4302(程控衰减器) ├── PE43xx.C ├── PE43xx.H └── readme.txt ├── README.md ├── SI5351(时钟芯片) ├── readme.txt ├── si5351.c ├── si5351.h ├── si5351_asserts.h └── si5351_errors.h └── readme.txt /AD9910(DDS)/AD9910.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/AD9910(DDS)/AD9910.H -------------------------------------------------------------------------------- /AD9910(DDS)/AD9910.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/AD9910(DDS)/AD9910.c -------------------------------------------------------------------------------- /AD9910(DDS)/AD9910_RAM_Data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/AD9910(DDS)/AD9910_RAM_Data.c -------------------------------------------------------------------------------- /AD9910(DDS)/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/AD9910(DDS)/readme.txt -------------------------------------------------------------------------------- /AD9959(DDS)/AD9959_NEW.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/AD9959(DDS)/AD9959_NEW.C -------------------------------------------------------------------------------- /AD9959(DDS)/AD9959_NEW.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/AD9959(DDS)/AD9959_NEW.H -------------------------------------------------------------------------------- /AD9959(DDS)/readme.txt: -------------------------------------------------------------------------------- 1 | 从标准库移植到HAL库 2 | 最新改进的AD9959驱动 解决了四通道输出波形初相不可控的Bug 3 | 采用软件spi 无需额外配置 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/LICENSE -------------------------------------------------------------------------------- /PE4302(程控衰减器)/PE43xx.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/PE4302(程控衰减器)/PE43xx.C -------------------------------------------------------------------------------- /PE4302(程控衰减器)/PE43xx.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/PE4302(程控衰减器)/PE43xx.H -------------------------------------------------------------------------------- /PE4302(程控衰减器)/readme.txt: -------------------------------------------------------------------------------- 1 | 从标准库移植到HAL库 2 | 纯软件实现 无需额外配置 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/README.md -------------------------------------------------------------------------------- /SI5351(时钟芯片)/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/SI5351(时钟芯片)/readme.txt -------------------------------------------------------------------------------- /SI5351(时钟芯片)/si5351.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/SI5351(时钟芯片)/si5351.c -------------------------------------------------------------------------------- /SI5351(时钟芯片)/si5351.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/SI5351(时钟芯片)/si5351.h -------------------------------------------------------------------------------- /SI5351(时钟芯片)/si5351_asserts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/SI5351(时钟芯片)/si5351_asserts.h -------------------------------------------------------------------------------- /SI5351(时钟芯片)/si5351_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floatkyun/2024TI_Driver/HEAD/SI5351(时钟芯片)/si5351_errors.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | 相关使用例见另一个仓库 --------------------------------------------------------------------------------