├── .metadata ├── .ide.log ├── .lock ├── .log ├── .log4j.xml ├── .plugins │ ├── com.st.stm32cube.ide.mcu.informationcenter │ │ └── 2.1.1.202206161110 │ ├── com.st.stm32cube.ide.mcu.livewatch │ │ ├── params.dat │ │ └── saved_expr.dat │ ├── org.eclipse.cdt.core │ │ ├── .log │ │ ├── MRAM-sqlite-STM32IDE.1688050722242.pdom │ │ └── MRAM-sqlite-STM32IDE.language.settings.xml │ ├── org.eclipse.cdt.make.core │ │ ├── specs.c │ │ └── specs.cpp │ ├── org.eclipse.cdt.make.ui │ │ └── dialog_settings.xml │ ├── org.eclipse.cdt.managedbuilder.core │ │ ├── spec.c │ │ └── spec.cpp │ ├── org.eclipse.cdt.ui │ │ ├── MRAM-sqlite-STM32IDE.build.log │ │ ├── dialog_settings.xml │ │ └── global-build.log │ ├── org.eclipse.core.resources │ │ ├── .history │ │ │ ├── 0 │ │ │ │ └── 4018c7129516001e1284eef0c792be4c │ │ │ ├── 34 │ │ │ │ └── 30c93b445217001e159bb2feb051d37b │ │ │ ├── 53 │ │ │ │ └── c066c9989816001e159bb2feb051d37b │ │ │ ├── 7f │ │ │ │ └── 809b3e2a5117001e159bb2feb051d37b │ │ │ └── dd │ │ │ │ └── f0aab3e85217001e159bb2feb051d37b │ │ ├── .projects │ │ │ └── MRAM-sqlite-STM32IDE │ │ │ │ ├── .indexes │ │ │ │ ├── bf │ │ │ │ │ ├── be │ │ │ │ │ │ ├── history.index │ │ │ │ │ │ └── properties.index │ │ │ │ │ └── c4 │ │ │ │ │ │ ├── 23 │ │ │ │ │ │ ├── history.index │ │ │ │ │ │ └── properties.index │ │ │ │ │ │ ├── d5 │ │ │ │ │ │ └── properties.index │ │ │ │ │ │ ├── history.index │ │ │ │ │ │ └── properties.index │ │ │ │ └── properties.index │ │ │ │ ├── .markers │ │ │ │ ├── .markers.snap │ │ │ │ └── .syncinfo.snap │ │ ├── .root │ │ │ ├── .indexes │ │ │ │ ├── history.version │ │ │ │ ├── properties.index │ │ │ │ └── properties.version │ │ │ ├── .markers.snap │ │ │ └── 1.tree │ │ ├── .safetable │ │ │ └── org.eclipse.core.resources │ │ └── 1.snap │ ├── org.eclipse.core.runtime │ │ └── .settings │ │ │ ├── com.st.stm32cube.common.preferences.prefs │ │ │ ├── com.st.stm32cube.ide.mcu.ide.oss.prefs │ │ │ ├── org.eclipse.cdt.core.prj-MRAM-sqlite-STM32IDE.prefs │ │ │ ├── org.eclipse.cdt.debug.core.prefs │ │ │ ├── org.eclipse.cdt.debug.ui.prefs │ │ │ ├── org.eclipse.cdt.dsf.ui.prefs │ │ │ ├── org.eclipse.cdt.managedbuilder.core.prefs │ │ │ ├── org.eclipse.cdt.ui.prefs │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.debug.core.prefs │ │ │ ├── org.eclipse.debug.ui.prefs │ │ │ ├── org.eclipse.launchbar.core.prefs │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ ├── org.eclipse.ui.navigator.prefs │ │ │ ├── org.eclipse.ui.prefs │ │ │ ├── org.eclipse.ui.workbench.prefs │ │ │ └── org.eclipse.urischeme.prefs │ ├── org.eclipse.debug.ui │ │ ├── dialog_settings.xml │ │ └── launchConfigurationHistory.xml │ ├── org.eclipse.e4.ui.workbench.swt │ │ └── dialog_settings.xml │ ├── org.eclipse.e4.workbench │ │ └── workbench.xmi │ ├── org.eclipse.ltk.core.refactoring │ │ └── .refactorings │ │ │ └── MRAM-sqlite-STM32IDE │ │ │ └── 2023 │ │ │ └── 6 │ │ │ └── 26 │ │ │ ├── refactorings.history │ │ │ └── refactorings.index │ ├── org.eclipse.ltk.ui.refactoring │ │ └── dialog_settings.xml │ ├── org.eclipse.ui.ide │ │ └── dialog_settings.xml │ └── org.eclipse.ui.workbench │ │ ├── dialog_settings.xml │ │ └── workingsets.xml └── version.ini ├── Amalgamation.md ├── LICENSE ├── MRAM-sqlite-STM32IDE ├── .cproject ├── .mxproject ├── .project ├── .settings │ ├── language.settings.xml │ └── stm32cubeide.project.prefs ├── Core │ ├── .DS_Store │ ├── Inc │ │ ├── FLASH_SECTOR_H7.h │ │ ├── MRAM_driver.h │ │ ├── definitions.h │ │ ├── flash_driver.h │ │ ├── lfs.h │ │ ├── lfs_util.h │ │ ├── little-fs-test.h │ │ ├── littlefs_driver.h │ │ ├── littlefs_sqlite_vfs.h │ │ ├── main.h │ │ ├── mram_commons.h │ │ ├── sqlite3.h │ │ ├── stm32h7xx_hal_conf.h │ │ └── stm32h7xx_it.h │ ├── Src │ │ ├── Benchmark │ │ │ └── .keep │ │ ├── Drivers │ │ │ ├── MRAM_driver.c │ │ │ ├── flash_driver.c │ │ │ └── littlefs_driver.c │ │ ├── FLASH_SECTOR_H7.c │ │ ├── lfs.c │ │ ├── lfs_util.c │ │ ├── little-fs-test.c │ │ ├── littlefs_sqlite_vfs.c │ │ ├── main.c │ │ ├── sqlite3.c │ │ ├── stm32h7xx_hal_msp.c │ │ ├── stm32h7xx_it.c │ │ ├── syscalls.c │ │ ├── sysmem.c │ │ └── system_stm32h7xx.c │ └── Startup │ │ └── startup_stm32h743zitx.s ├── Debug │ ├── Core │ │ ├── Src │ │ │ ├── Benchmark │ │ │ │ └── subdir.mk │ │ │ ├── Drivers │ │ │ │ └── subdir.mk │ │ │ └── subdir.mk │ │ └── Startup │ │ │ └── subdir.mk │ ├── Drivers │ │ └── STM32H7xx_HAL_Driver │ │ │ └── Src │ │ │ └── subdir.mk │ ├── makefile │ ├── objects.list │ ├── objects.mk │ └── sources.mk ├── Drivers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32H7xx │ │ │ │ ├── Include │ │ │ │ ├── stm32h743xx.h │ │ │ │ ├── stm32h7xx.h │ │ │ │ └── system_stm32h7xx.h │ │ │ │ └── LICENSE.txt │ │ ├── Include │ │ │ ├── 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_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ │ └── LICENSE.txt │ └── STM32H7xx_HAL_Driver │ │ ├── Inc │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ ├── stm32h7xx_hal.h │ │ ├── stm32h7xx_hal_cortex.h │ │ ├── stm32h7xx_hal_crc.h │ │ ├── stm32h7xx_hal_crc_ex.h │ │ ├── stm32h7xx_hal_def.h │ │ ├── stm32h7xx_hal_dma.h │ │ ├── stm32h7xx_hal_dma_ex.h │ │ ├── stm32h7xx_hal_eth.h │ │ ├── stm32h7xx_hal_eth_ex.h │ │ ├── stm32h7xx_hal_exti.h │ │ ├── stm32h7xx_hal_flash.h │ │ ├── stm32h7xx_hal_flash_ex.h │ │ ├── stm32h7xx_hal_gpio.h │ │ ├── stm32h7xx_hal_gpio_ex.h │ │ ├── stm32h7xx_hal_hsem.h │ │ ├── stm32h7xx_hal_i2c.h │ │ ├── stm32h7xx_hal_i2c_ex.h │ │ ├── stm32h7xx_hal_mdma.h │ │ ├── stm32h7xx_hal_pwr.h │ │ ├── stm32h7xx_hal_pwr_ex.h │ │ ├── stm32h7xx_hal_rcc.h │ │ ├── stm32h7xx_hal_rcc_ex.h │ │ ├── stm32h7xx_hal_tim.h │ │ ├── stm32h7xx_hal_tim_ex.h │ │ ├── stm32h7xx_ll_bus.h │ │ ├── stm32h7xx_ll_cortex.h │ │ ├── stm32h7xx_ll_crc.h │ │ ├── stm32h7xx_ll_crs.h │ │ ├── stm32h7xx_ll_dma.h │ │ ├── stm32h7xx_ll_dmamux.h │ │ ├── stm32h7xx_ll_exti.h │ │ ├── stm32h7xx_ll_gpio.h │ │ ├── stm32h7xx_ll_hsem.h │ │ ├── stm32h7xx_ll_pwr.h │ │ ├── stm32h7xx_ll_rcc.h │ │ ├── stm32h7xx_ll_system.h │ │ └── stm32h7xx_ll_utils.h │ │ ├── LICENSE.txt │ │ └── Src │ │ ├── stm32h7xx_hal.c │ │ ├── stm32h7xx_hal_cortex.c │ │ ├── stm32h7xx_hal_crc.c │ │ ├── stm32h7xx_hal_crc_ex.c │ │ ├── stm32h7xx_hal_dma.c │ │ ├── stm32h7xx_hal_dma_ex.c │ │ ├── stm32h7xx_hal_eth.c │ │ ├── stm32h7xx_hal_eth_ex.c │ │ ├── stm32h7xx_hal_exti.c │ │ ├── stm32h7xx_hal_flash.c │ │ ├── stm32h7xx_hal_flash_ex.c │ │ ├── stm32h7xx_hal_gpio.c │ │ ├── stm32h7xx_hal_hsem.c │ │ ├── stm32h7xx_hal_i2c.c │ │ ├── stm32h7xx_hal_i2c_ex.c │ │ ├── stm32h7xx_hal_mdma.c │ │ ├── stm32h7xx_hal_pwr.c │ │ ├── stm32h7xx_hal_pwr_ex.c │ │ ├── stm32h7xx_hal_rcc.c │ │ ├── stm32h7xx_hal_rcc_ex.c │ │ ├── stm32h7xx_hal_tim.c │ │ └── stm32h7xx_hal_tim_ex.c ├── MRAM-sqlite-STM32IDE Debug.launch ├── MRAM-sqlite-STM32IDE.ioc ├── STM32H743ZITX_FLASH.ld └── STM32H743ZITX_RAM.ld ├── README.md ├── SQLite-standalone ├── Makefile ├── inc │ └── sqlite3.h └── src │ └── sqlite3.c ├── bench_sqlite3.c.temp └── bench_sqlite3.h.temp /.metadata/.ide.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.ide.log -------------------------------------------------------------------------------- /.metadata/.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata/.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.log -------------------------------------------------------------------------------- /.metadata/.log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.log4j.xml -------------------------------------------------------------------------------- /.metadata/.plugins/com.st.stm32cube.ide.mcu.informationcenter/2.1.1.202206161110: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata/.plugins/com.st.stm32cube.ide.mcu.livewatch/params.dat: -------------------------------------------------------------------------------- 1 | NUMBER_FORMAT=0 2 | -------------------------------------------------------------------------------- /.metadata/.plugins/com.st.stm32cube.ide.mcu.livewatch/saved_expr.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.core/.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.cdt.core/.log -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.core/MRAM-sqlite-STM32IDE.1688050722242.pdom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.cdt.core/MRAM-sqlite-STM32IDE.1688050722242.pdom -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.core/MRAM-sqlite-STM32IDE.language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.cdt.core/MRAM-sqlite-STM32IDE.language.settings.xml -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.make.core/specs.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.make.core/specs.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.make.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.cdt.make.ui/dialog_settings.xml -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.managedbuilder.core/spec.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.managedbuilder.core/spec.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.ui/MRAM-sqlite-STM32IDE.build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.cdt.ui/MRAM-sqlite-STM32IDE.build.log -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.cdt.ui/dialog_settings.xml -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.cdt.ui/global-build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.cdt.ui/global-build.log -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.history/0/4018c7129516001e1284eef0c792be4c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.history/0/4018c7129516001e1284eef0c792be4c -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.history/34/30c93b445217001e159bb2feb051d37b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.history/34/30c93b445217001e159bb2feb051d37b -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.history/53/c066c9989816001e159bb2feb051d37b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.history/53/c066c9989816001e159bb2feb051d37b -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.history/7f/809b3e2a5117001e159bb2feb051d37b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.history/7f/809b3e2a5117001e159bb2feb051d37b -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.history/dd/f0aab3e85217001e159bb2feb051d37b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.history/dd/f0aab3e85217001e159bb2feb051d37b -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/be/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/be/history.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/be/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/be/properties.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/23/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/23/history.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/23/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/23/properties.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/d5/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/d5/properties.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/history.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/history.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/bf/c4/properties.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.indexes/properties.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.markers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.markers -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.markers.snap -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.syncinfo.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.projects/MRAM-sqlite-STM32IDE/.syncinfo.snap -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.root/1.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.root/1.tree -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.resources/1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.resources/1.snap -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/com.st.stm32cube.common.preferences.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.st.stm32cube.common.preferences.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/com.st.stm32cube.ide.mcu.ide.oss.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.st.stm32cube.ide.mcu.ide.oss.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.core.prj-MRAM-sqlite-STM32IDE.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.core.prj-MRAM-sqlite-STM32IDE.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.debug.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.debug.core.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.debug.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.debug.ui.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.dsf.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.dsf.ui.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.managedbuilder.core.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.ui.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.core.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.launchbar.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.launchbar.core.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.navigator.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.navigator.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | showIntro=false 3 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.urischeme.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.urischeme.prefs -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.debug.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.debug.ui/dialog_settings.xml -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.e4.ui.workbench.swt/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.e4.ui.workbench.swt/dialog_settings.xml -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/MRAM-sqlite-STM32IDE/2023/6/26/refactorings.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/MRAM-sqlite-STM32IDE/2023/6/26/refactorings.history -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ltk.core.refactoring/.refactorings/MRAM-sqlite-STM32IDE/2023/6/26/refactorings.index: -------------------------------------------------------------------------------- 1 | 1688050746075 Rename resource 'MRAM-sqlite-stm32ide.ioc' 2 | -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ltk.ui.refactoring/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.ltk.ui.refactoring/dialog_settings.xml -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml -------------------------------------------------------------------------------- /.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml -------------------------------------------------------------------------------- /.metadata/version.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/.metadata/version.ini -------------------------------------------------------------------------------- /Amalgamation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/Amalgamation.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/LICENSE -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/.cproject -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/.mxproject -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/.project -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/.settings/language.settings.xml -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/.settings/stm32cubeide.project.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/.settings/stm32cubeide.project.prefs -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/.DS_Store -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/FLASH_SECTOR_H7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/FLASH_SECTOR_H7.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/MRAM_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/MRAM_driver.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/definitions.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/flash_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/flash_driver.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/lfs.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/lfs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/lfs_util.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/little-fs-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/little-fs-test.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/littlefs_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/littlefs_driver.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/littlefs_sqlite_vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/littlefs_sqlite_vfs.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/main.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/mram_commons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/mram_commons.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/sqlite3.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/stm32h7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/stm32h7xx_hal_conf.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Inc/stm32h7xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Inc/stm32h7xx_it.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/Benchmark/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/Drivers/MRAM_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/Drivers/MRAM_driver.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/Drivers/flash_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/Drivers/flash_driver.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/Drivers/littlefs_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/Drivers/littlefs_driver.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/FLASH_SECTOR_H7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/FLASH_SECTOR_H7.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/lfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/lfs.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/lfs_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/lfs_util.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/little-fs-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/little-fs-test.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/littlefs_sqlite_vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/littlefs_sqlite_vfs.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/main.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/sqlite3.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/stm32h7xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/stm32h7xx_hal_msp.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/stm32h7xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/stm32h7xx_it.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/syscalls.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/sysmem.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Src/system_stm32h7xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Src/system_stm32h7xx.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Core/Startup/startup_stm32h743zitx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Core/Startup/startup_stm32h743zitx.s -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Debug/Core/Src/Benchmark/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Debug/Core/Src/Benchmark/subdir.mk -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Debug/Core/Src/Drivers/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Debug/Core/Src/Drivers/subdir.mk -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Debug/Core/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Debug/Core/Src/subdir.mk -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Debug/Core/Startup/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Debug/Core/Startup/subdir.mk -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Debug/Drivers/STM32H7xx_HAL_Driver/Src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Debug/Drivers/STM32H7xx_HAL_Driver/Src/subdir.mk -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Debug/makefile -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Debug/objects.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Debug/objects.list -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Debug/objects.mk -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Debug/sources.mk -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h743xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h743xx.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Device/ST/STM32H7xx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Device/ST/STM32H7xx/LICENSE.txt -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_armclang_ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_armclang_ltm.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/cmsis_version.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_armv81mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_armv81mml.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_armv8mml.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm1.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm23.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm33.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm35p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm35p.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/mpu_armv7.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/mpu_armv8.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/Include/tz_context.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/CMSIS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/CMSIS/LICENSE.txt -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_crc.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_crc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_crc_ex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_eth.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_eth_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_eth_ex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim_ex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_bus.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_cortex.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_crc.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_crs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_crs.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_dma.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_dmamux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_dmamux.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_exti.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_gpio.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_hsem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_hsem.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_pwr.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_rcc.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_system.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_utils.h -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/LICENSE.txt -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_cortex.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_crc.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_crc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_crc_ex.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_dma_ex.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_eth.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_eth_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_eth_ex.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_exti.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_flash_ex.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_gpio.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_hsem.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_mdma.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/MRAM-sqlite-STM32IDE Debug.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/MRAM-sqlite-STM32IDE Debug.launch -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/MRAM-sqlite-STM32IDE.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/MRAM-sqlite-STM32IDE.ioc -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/STM32H743ZITX_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/STM32H743ZITX_FLASH.ld -------------------------------------------------------------------------------- /MRAM-sqlite-STM32IDE/STM32H743ZITX_RAM.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/MRAM-sqlite-STM32IDE/STM32H743ZITX_RAM.ld -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/README.md -------------------------------------------------------------------------------- /SQLite-standalone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/SQLite-standalone/Makefile -------------------------------------------------------------------------------- /SQLite-standalone/inc/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/SQLite-standalone/inc/sqlite3.h -------------------------------------------------------------------------------- /SQLite-standalone/src/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/SQLite-standalone/src/sqlite3.c -------------------------------------------------------------------------------- /bench_sqlite3.c.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/bench_sqlite3.c.temp -------------------------------------------------------------------------------- /bench_sqlite3.h.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luismeruje/SQLite-STM32/HEAD/bench_sqlite3.h.temp --------------------------------------------------------------------------------