├── .gitignore ├── LICENSE ├── LPC824_MiniOscilloscope ├── Application │ ├── ADC.C │ ├── ADC.h │ ├── key_PINT.c │ ├── key_PINT.h │ ├── main.c │ └── main.h ├── Common │ ├── CMSIS │ │ ├── cmsis_armcc.h │ │ ├── cmsis_armcc_V6.h │ │ ├── core_cm0plus.h │ │ ├── core_cmFunc.h │ │ └── core_cmInstr.h │ ├── board │ │ ├── board.c │ │ ├── board.h │ │ ├── board_api.h │ │ └── retarget.h │ ├── chip │ │ ├── chip.h │ │ ├── clock_8xx.c │ │ ├── clock_8xx.h │ │ ├── cmsis.h │ │ ├── error_8xx.h │ │ ├── fmc_8xx.h │ │ ├── ioswm_8xx.c │ │ ├── ioswm_8xx.h │ │ ├── lpc_types.h │ │ ├── swm_8xx.c │ │ ├── syscon_8xx.c │ │ ├── syscon_8xx.h │ │ └── sysinit_8xx.c │ └── startup │ │ └── keil_startup_lpc82x.s ├── Drivers │ ├── IIC │ │ ├── IIC.c │ │ └── IIC.h │ ├── OLED │ │ ├── bmp.h │ │ ├── oled.c │ │ ├── oled.h │ │ └── oledfont.h │ ├── acmp │ │ ├── acmp_8xx.c │ │ └── acmp_8xx.h │ ├── adc │ │ ├── adc_8xx.c │ │ └── adc_8xx.h │ ├── crc │ │ ├── crc_8xx.c │ │ └── crc_8xx.h │ ├── delay │ │ ├── delay.c │ │ └── delay.h │ ├── dma │ │ ├── dma_8xx.c │ │ └── dma_8xx.h │ ├── gpio │ │ ├── gpio_8xx.c │ │ └── gpio_8xx.h │ ├── i2c │ │ ├── i2c_8xx.c │ │ └── i2c_8xx.h │ ├── iap │ │ ├── iap.c │ │ └── iap.h │ ├── inmux │ │ └── inmux_8xx.h │ ├── mrt │ │ ├── mrt_8xx.h │ │ ├── stopwatch.c │ │ └── stopwatch.h │ ├── peri_driver.h │ ├── pinint │ │ ├── pinint_8xx.c │ │ └── pinint_8xx.h │ ├── pmu │ │ ├── pmu_8xx.c │ │ └── pmu_8xx.h │ ├── rom │ │ ├── rom_i2c_8xx.h │ │ ├── rom_pwr_8xx.h │ │ ├── rom_uart_8xx.h │ │ └── romapi_8xx.h │ ├── sctimer │ │ ├── sct_8xx.c │ │ ├── sct_8xx.h │ │ ├── sct_pwm_8xx.c │ │ └── sct_pwm_8xx.h │ ├── spi │ │ ├── spi_8xx.c │ │ └── spi_8xx.h │ ├── uart │ │ ├── ring_buffer.c │ │ ├── ring_buffer.h │ │ ├── uart_8xx.c │ │ └── uart_8xx.h │ ├── wkt │ │ ├── wkt_8xx.c │ │ └── wkt_8xx.h │ └── wwdt │ │ ├── wwdt_8xx.c │ │ └── wwdt_8xx.h ├── FFT │ ├── Adafruit_ZeroFFT.h │ ├── README.md │ ├── arm_common_tables.c │ ├── arm_common_tables.h │ ├── fftutil.c │ ├── fftwindows.c │ ├── library.properties │ └── license.txt ├── JLinkLog.txt ├── JLinkSettings.ini ├── LPC824.uvoptx ├── LPC824.uvprojx ├── Listings │ ├── LPC824_MiniOscilloscope.map │ └── keil_startup_lpc82x.lst ├── Objects │ ├── LPC824_MiniOscilloscope.axf │ ├── LPC824_MiniOscilloscope.hex │ └── LPC824_MiniOscilloscope.sct ├── Packs_LPC824.htm └── RTE │ └── _LPC824 │ └── RTE_Components.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LICENSE -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Application/ADC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Application/ADC.C -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Application/ADC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Application/ADC.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Application/key_PINT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Application/key_PINT.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Application/key_PINT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Application/key_PINT.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Application/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Application/main.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Application/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Application/main.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/CMSIS/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/CMSIS/cmsis_armcc.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/CMSIS/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/CMSIS/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/CMSIS/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/CMSIS/core_cm0plus.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/board/board.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/board/board.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/board/board_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/board/board_api.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/board/retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/board/retarget.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/chip.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/clock_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/clock_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/clock_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/clock_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/cmsis.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/error_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/error_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/fmc_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/fmc_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/ioswm_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/ioswm_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/ioswm_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/ioswm_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/lpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/lpc_types.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/swm_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/swm_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/syscon_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/syscon_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/syscon_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/syscon_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/chip/sysinit_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/chip/sysinit_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Common/startup/keil_startup_lpc82x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Common/startup/keil_startup_lpc82x.s -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/IIC/IIC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/IIC/IIC.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/IIC/IIC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/IIC/IIC.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/OLED/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/OLED/bmp.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/OLED/oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/OLED/oled.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/OLED/oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/OLED/oled.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/OLED/oledfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/OLED/oledfont.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/acmp/acmp_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/acmp/acmp_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/acmp/acmp_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/acmp/acmp_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/adc/adc_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/adc/adc_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/adc/adc_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/adc/adc_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/crc/crc_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/crc/crc_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/crc/crc_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/crc/crc_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/delay/delay.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/delay/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/delay/delay.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/dma/dma_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/dma/dma_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/dma/dma_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/dma/dma_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/gpio/gpio_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/gpio/gpio_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/gpio/gpio_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/gpio/gpio_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/i2c/i2c_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/i2c/i2c_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/i2c/i2c_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/i2c/i2c_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/iap/iap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/iap/iap.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/iap/iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/iap/iap.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/inmux/inmux_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/inmux/inmux_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/mrt/mrt_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/mrt/mrt_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/mrt/stopwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/mrt/stopwatch.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/mrt/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/mrt/stopwatch.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/peri_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/peri_driver.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/pinint/pinint_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/pinint/pinint_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/pinint/pinint_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/pinint/pinint_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/pmu/pmu_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/pmu/pmu_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/pmu/pmu_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/pmu/pmu_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/rom/rom_i2c_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/rom/rom_i2c_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/rom/rom_pwr_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/rom/rom_pwr_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/rom/rom_uart_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/rom/rom_uart_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/rom/romapi_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/rom/romapi_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/sctimer/sct_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/sctimer/sct_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/sctimer/sct_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/sctimer/sct_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/sctimer/sct_pwm_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/sctimer/sct_pwm_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/sctimer/sct_pwm_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/sctimer/sct_pwm_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/spi/spi_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/spi/spi_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/spi/spi_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/spi/spi_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/uart/ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/uart/ring_buffer.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/uart/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/uart/ring_buffer.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/uart/uart_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/uart/uart_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/uart/uart_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/uart/uart_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/wkt/wkt_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/wkt/wkt_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/wkt/wkt_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/wkt/wkt_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/wwdt/wwdt_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/wwdt/wwdt_8xx.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Drivers/wwdt/wwdt_8xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Drivers/wwdt/wwdt_8xx.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/FFT/Adafruit_ZeroFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/FFT/Adafruit_ZeroFFT.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/FFT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/FFT/README.md -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/FFT/arm_common_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/FFT/arm_common_tables.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/FFT/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/FFT/arm_common_tables.h -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/FFT/fftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/FFT/fftutil.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/FFT/fftwindows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/FFT/fftwindows.c -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/FFT/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/FFT/library.properties -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/FFT/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/FFT/license.txt -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/JLinkLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/JLinkLog.txt -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/JLinkSettings.ini -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/LPC824.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/LPC824.uvoptx -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/LPC824.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/LPC824.uvprojx -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Listings/LPC824_MiniOscilloscope.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Listings/LPC824_MiniOscilloscope.map -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Listings/keil_startup_lpc82x.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Listings/keil_startup_lpc82x.lst -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Objects/LPC824_MiniOscilloscope.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Objects/LPC824_MiniOscilloscope.axf -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Objects/LPC824_MiniOscilloscope.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Objects/LPC824_MiniOscilloscope.hex -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Objects/LPC824_MiniOscilloscope.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Objects/LPC824_MiniOscilloscope.sct -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/Packs_LPC824.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/Packs_LPC824.htm -------------------------------------------------------------------------------- /LPC824_MiniOscilloscope/RTE/_LPC824/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangweiwen/LPC824_MiniOscilloscope/HEAD/LPC824_MiniOscilloscope/RTE/_LPC824/RTE_Components.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LPC824_MiniOscilloscope 2 | 一个基于NXP LPC824的示波器软件 3 | --------------------------------------------------------------------------------