├── .gitignore ├── CMSIS ├── Include │ ├── arm_common_tables.h │ ├── arm_const_structs.h │ ├── arm_math.h │ ├── cmsis_armcc.h │ ├── cmsis_armclang.h │ ├── cmsis_armclang_ltm.h │ ├── cmsis_compiler.h │ ├── cmsis_gcc.h │ ├── cmsis_iccarm.h │ ├── cmsis_version.h │ ├── core_armv81mml.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_cm35p.h │ ├── core_cm4.h │ ├── core_cm7.h │ ├── core_dsp.h │ ├── core_sc000.h │ ├── core_sc300.h │ ├── mpu_armv7.h │ ├── mpu_armv8.h │ └── tz_context.h └── LICENSE.txt ├── LICENSE ├── README.md ├── src ├── microseconds.h ├── microseconds_common.c ├── microseconds_cortexm_systick.c └── microseconds_imxrt_pit.c └── test ├── pit_imxrt1011 ├── MIMXRT1011.h ├── MIMXRT1011_features.h ├── MIMXRT1011xxxxx_flexspi_nor.icf ├── MIMXRT1011xxxxx_ram.icf ├── fsl_clock.h ├── fsl_common.h ├── fsl_device_registers.h ├── main.c ├── microseconds_demo.ewd ├── microseconds_demo.ewp ├── microseconds_demo.eww ├── startup_MIMXRT1011.s ├── system_MIMXRT1011.c └── system_MIMXRT1011.h └── systick_imxrt1011 ├── MIMXRT1011.h ├── MIMXRT1011_features.h ├── MIMXRT1011xxxxx_flexspi_nor.icf ├── MIMXRT1011xxxxx_ram.icf ├── fsl_device_registers.h ├── main.c ├── microseconds_demo.ewd ├── microseconds_demo.ewp ├── microseconds_demo.eww ├── startup_MIMXRT1011.s ├── system_MIMXRT1011.c └── system_MIMXRT1011.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/.gitignore -------------------------------------------------------------------------------- /CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /CMSIS/Include/cmsis_armclang_ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/cmsis_armclang_ltm.h -------------------------------------------------------------------------------- /CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /CMSIS/Include/core_armv81mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_armv81mml.h -------------------------------------------------------------------------------- /CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /CMSIS/Include/core_cm35p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_cm35p.h -------------------------------------------------------------------------------- /CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /CMSIS/Include/core_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_dsp.h -------------------------------------------------------------------------------- /CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/README.md -------------------------------------------------------------------------------- /src/microseconds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/src/microseconds.h -------------------------------------------------------------------------------- /src/microseconds_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/src/microseconds_common.c -------------------------------------------------------------------------------- /src/microseconds_cortexm_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/src/microseconds_cortexm_systick.c -------------------------------------------------------------------------------- /src/microseconds_imxrt_pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/src/microseconds_imxrt_pit.c -------------------------------------------------------------------------------- /test/pit_imxrt1011/MIMXRT1011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/MIMXRT1011.h -------------------------------------------------------------------------------- /test/pit_imxrt1011/MIMXRT1011_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/MIMXRT1011_features.h -------------------------------------------------------------------------------- /test/pit_imxrt1011/MIMXRT1011xxxxx_flexspi_nor.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/MIMXRT1011xxxxx_flexspi_nor.icf -------------------------------------------------------------------------------- /test/pit_imxrt1011/MIMXRT1011xxxxx_ram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/MIMXRT1011xxxxx_ram.icf -------------------------------------------------------------------------------- /test/pit_imxrt1011/fsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/fsl_clock.h -------------------------------------------------------------------------------- /test/pit_imxrt1011/fsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/fsl_common.h -------------------------------------------------------------------------------- /test/pit_imxrt1011/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/fsl_device_registers.h -------------------------------------------------------------------------------- /test/pit_imxrt1011/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/main.c -------------------------------------------------------------------------------- /test/pit_imxrt1011/microseconds_demo.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/microseconds_demo.ewd -------------------------------------------------------------------------------- /test/pit_imxrt1011/microseconds_demo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/microseconds_demo.ewp -------------------------------------------------------------------------------- /test/pit_imxrt1011/microseconds_demo.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/microseconds_demo.eww -------------------------------------------------------------------------------- /test/pit_imxrt1011/startup_MIMXRT1011.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/startup_MIMXRT1011.s -------------------------------------------------------------------------------- /test/pit_imxrt1011/system_MIMXRT1011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/system_MIMXRT1011.c -------------------------------------------------------------------------------- /test/pit_imxrt1011/system_MIMXRT1011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/pit_imxrt1011/system_MIMXRT1011.h -------------------------------------------------------------------------------- /test/systick_imxrt1011/MIMXRT1011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/MIMXRT1011.h -------------------------------------------------------------------------------- /test/systick_imxrt1011/MIMXRT1011_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/MIMXRT1011_features.h -------------------------------------------------------------------------------- /test/systick_imxrt1011/MIMXRT1011xxxxx_flexspi_nor.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/MIMXRT1011xxxxx_flexspi_nor.icf -------------------------------------------------------------------------------- /test/systick_imxrt1011/MIMXRT1011xxxxx_ram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/MIMXRT1011xxxxx_ram.icf -------------------------------------------------------------------------------- /test/systick_imxrt1011/fsl_device_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/fsl_device_registers.h -------------------------------------------------------------------------------- /test/systick_imxrt1011/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/main.c -------------------------------------------------------------------------------- /test/systick_imxrt1011/microseconds_demo.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/microseconds_demo.ewd -------------------------------------------------------------------------------- /test/systick_imxrt1011/microseconds_demo.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/microseconds_demo.ewp -------------------------------------------------------------------------------- /test/systick_imxrt1011/microseconds_demo.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/microseconds_demo.eww -------------------------------------------------------------------------------- /test/systick_imxrt1011/startup_MIMXRT1011.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/startup_MIMXRT1011.s -------------------------------------------------------------------------------- /test/systick_imxrt1011/system_MIMXRT1011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/system_MIMXRT1011.c -------------------------------------------------------------------------------- /test/systick_imxrt1011/system_MIMXRT1011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayHeng/microseconds/HEAD/test/systick_imxrt1011/system_MIMXRT1011.h --------------------------------------------------------------------------------