├── .vscode └── ipch │ ├── 453683422fbca28d │ └── MAIN.ipch │ ├── 4eb19b9270baef57 │ └── MAIN.ipch │ ├── 72c8e2f8fb9d3cd2 │ └── SYSTEM_STM32F10X.ipch │ ├── 99e777b845661fb7 │ └── BEEP.ipch │ ├── 9a8ea75ed409e831 │ └── TIMER.ipch │ ├── b29bbed9a5333c27 │ └── LCD.ipch │ ├── b867b6122859d1b3 │ └── USMART_STR.ipch │ └── f06f087705d86197 │ └── TIMER.ipch ├── CORE ├── core_cm3.c ├── core_cm3.h └── startup_stm32f10x_hd.s ├── FATFS ├── doc │ ├── css_e.css │ ├── css_j.css │ ├── css_p.css │ ├── img │ │ ├── app1.c │ │ ├── app2.c │ │ ├── app3.c │ │ ├── app4.c │ │ ├── f1.png │ │ ├── f2.png │ │ ├── f3.png │ │ ├── f4.png │ │ ├── f5.png │ │ ├── f6.png │ │ ├── f7.png │ │ ├── funcs.png │ │ ├── layers.png │ │ ├── layers1.png │ │ ├── layers2.png │ │ ├── layers3.png │ │ ├── mkfatimg.zip │ │ ├── modules.png │ │ ├── rwtest.png │ │ ├── rwtest2.png │ │ └── rwtest3.png │ └── updates.txt ├── exfuns │ ├── exfuns.c │ ├── exfuns.h │ ├── fattester.c │ ├── fattester.h │ └── mycc936.c ├── fattester.c ├── fattester.h └── src │ ├── 00readme.txt │ ├── diskio.c │ ├── diskio.h │ ├── ff.c │ ├── ff.h │ ├── ffconf.h │ ├── history.txt │ ├── integer.h │ └── option │ ├── cc932.c │ ├── cc936.c │ ├── cc949.c │ ├── cc950.c │ ├── ccsbcs.c │ ├── mycc936.c │ ├── syscall.c │ └── unicode.c ├── HARDWARE ├── 24CXX │ ├── 24cxx.c │ └── 24cxx.h ├── ADC │ ├── adc.c │ └── adc.h ├── BEEP │ ├── beep.c │ └── beep.h ├── EXTI │ ├── exti.c │ └── exti.h ├── IIC │ ├── myiic.c │ └── myiic.h ├── KEY │ ├── key.c │ └── key.h ├── LCD │ ├── ILI93xx.c │ ├── font.h │ ├── lcd.c │ └── lcd.h ├── LED │ ├── led.c │ └── led.h ├── LSENS │ ├── lsens.c │ └── lsens.h ├── OV7670 │ ├── ov7670.c │ ├── ov7670.h │ ├── ov7670cfg.h │ ├── sccb.c │ └── sccb.h ├── OV7725 │ ├── ov7725.c │ ├── ov7725.h │ ├── ov7725config.h │ ├── sccb.c │ └── sccb.h ├── SDIO │ ├── sdio_sdcard.c │ └── sdio_sdcard.h ├── SPI │ ├── spi.c │ └── spi.h ├── SRAM │ ├── sram.c │ └── sram.h ├── STMFLASH │ ├── stmflash.c │ └── stmflash.h ├── TIMER │ ├── timer.c │ └── timer.h ├── TOUCH │ ├── ctiic.c │ ├── ctiic.h │ ├── ft5206.c │ ├── ft5206.h │ ├── gt9147.c │ ├── gt9147.h │ ├── ott2001a.c │ ├── ott2001a.h │ ├── touch.c │ └── touch.h ├── TPAD │ ├── tpad.c │ └── tpad.h └── W25QXX │ ├── w25qxx.c │ └── w25qxx.h ├── MALLOC ├── malloc.c └── malloc.h ├── OBJ ├── 24cxx.crf ├── 24cxx.d ├── 24cxx.o ├── ExtDll.iex ├── OV7670.hex ├── OV7725_OV7670.axf ├── OV7725_OV7670.build_log.htm ├── OV7725_OV7670.hex ├── OV7725_OV7670.htm ├── OV7725_OV7670.lnp ├── OV7725_OV7670.sct ├── OV7725_OV7670_OV7725_OV7670.dep ├── adc.crf ├── adc.d ├── adc.o ├── alert_system_alert_system.dep ├── beep.crf ├── beep.d ├── beep.o ├── bmp.crf ├── bmp.d ├── bmp.o ├── core_cm3.crf ├── core_cm3.d ├── core_cm3.o ├── ctiic.crf ├── ctiic.d ├── ctiic.o ├── delay.crf ├── delay.d ├── delay.o ├── diskio.crf ├── diskio.d ├── diskio.o ├── exfuns.crf ├── exfuns.d ├── exfuns.o ├── exti.crf ├── exti.d ├── exti.o ├── fattester.crf ├── fattester.d ├── fattester.o ├── ff.crf ├── ff.d ├── ff.o ├── fontupd.crf ├── fontupd.d ├── fontupd.o ├── ft5206.crf ├── ft5206.d ├── ft5206.o ├── gif.crf ├── gif.d ├── gif.o ├── gt9147.crf ├── gt9147.d ├── gt9147.o ├── key.crf ├── key.d ├── key.o ├── lcd.crf ├── lcd.d ├── lcd.o ├── led.crf ├── led.d ├── led.o ├── lsens.crf ├── lsens.d ├── lsens.o ├── main.crf ├── main.d ├── main.o ├── malloc.crf ├── malloc.d ├── malloc.o ├── misc.crf ├── misc.d ├── misc.o ├── mycc936.crf ├── mycc936.d ├── mycc936.o ├── myiic.crf ├── myiic.d ├── myiic.o ├── ott2001a.crf ├── ott2001a.d ├── ott2001a.o ├── ov7670.crf ├── ov7670.d ├── ov7670.o ├── ov7725.crf ├── ov7725.d ├── ov7725.o ├── piclib.crf ├── piclib.d ├── piclib.o ├── sccb.crf ├── sccb.d ├── sccb.o ├── sdio_sdcard.crf ├── sdio_sdcard.d ├── sdio_sdcard.o ├── spi.crf ├── spi.d ├── spi.o ├── sram.crf ├── sram.d ├── sram.o ├── startup_stm32f10x_hd.d ├── startup_stm32f10x_hd.o ├── stm32f10x_adc.crf ├── stm32f10x_adc.d ├── stm32f10x_adc.o ├── stm32f10x_dma.crf ├── stm32f10x_dma.d ├── stm32f10x_dma.o ├── stm32f10x_exti.crf ├── stm32f10x_exti.d ├── stm32f10x_exti.o ├── stm32f10x_flash.crf ├── stm32f10x_flash.d ├── stm32f10x_flash.o ├── stm32f10x_fsmc.crf ├── stm32f10x_fsmc.d ├── stm32f10x_fsmc.o ├── stm32f10x_gpio.crf ├── stm32f10x_gpio.d ├── stm32f10x_gpio.o ├── stm32f10x_it.crf ├── stm32f10x_it.d ├── stm32f10x_it.o ├── stm32f10x_rcc.crf ├── stm32f10x_rcc.d ├── stm32f10x_rcc.o ├── stm32f10x_sdio.crf ├── stm32f10x_sdio.d ├── stm32f10x_sdio.o ├── stm32f10x_spi.crf ├── stm32f10x_spi.d ├── stm32f10x_spi.o ├── stm32f10x_tim.crf ├── stm32f10x_tim.d ├── stm32f10x_tim.o ├── stm32f10x_usart.crf ├── stm32f10x_usart.d ├── stm32f10x_usart.o ├── stmflash.crf ├── stmflash.d ├── stmflash.o ├── sys.crf ├── sys.d ├── sys.o ├── system_stm32f10x.crf ├── system_stm32f10x.d ├── system_stm32f10x.o ├── text.crf ├── text.d ├── text.o ├── timer.crf ├── timer.d ├── timer.o ├── tjpgd.crf ├── tjpgd.d ├── tjpgd.o ├── touch.crf ├── touch.d ├── touch.o ├── tpad.crf ├── tpad.d ├── tpad.o ├── tsensor.crf ├── tsensor.d ├── tsensor.o ├── usart.crf ├── usart.d ├── usart.o ├── usmart.crf ├── usmart.d ├── usmart.o ├── usmart_config.crf ├── usmart_config.d ├── usmart_config.o ├── usmart_str.crf ├── usmart_str.d ├── usmart_str.o ├── w25qxx.crf ├── w25qxx.d └── w25qxx.o ├── PICTURE ├── bmp.c ├── bmp.h ├── gif.c ├── gif.h ├── integer.h ├── piclib.c ├── piclib.h ├── tjpgd.c └── tjpgd.h ├── README.md ├── STM32F10x_FWLib ├── inc │ ├── misc.h │ ├── stm32f10x_adc.h │ ├── stm32f10x_bkp.h │ ├── stm32f10x_can.h │ ├── stm32f10x_cec.h │ ├── stm32f10x_crc.h │ ├── stm32f10x_dac.h │ ├── stm32f10x_dbgmcu.h │ ├── stm32f10x_dma.h │ ├── stm32f10x_exti.h │ ├── stm32f10x_flash.h │ ├── stm32f10x_fsmc.h │ ├── stm32f10x_gpio.h │ ├── stm32f10x_i2c.h │ ├── stm32f10x_iwdg.h │ ├── stm32f10x_pwr.h │ ├── stm32f10x_rcc.h │ ├── stm32f10x_rtc.h │ ├── stm32f10x_sdio.h │ ├── stm32f10x_spi.h │ ├── stm32f10x_tim.h │ ├── stm32f10x_usart.h │ └── stm32f10x_wwdg.h └── src │ ├── misc.c │ ├── stm32f10x_adc.c │ ├── stm32f10x_bkp.c │ ├── stm32f10x_can.c │ ├── stm32f10x_cec.c │ ├── stm32f10x_crc.c │ ├── stm32f10x_dac.c │ ├── stm32f10x_dbgmcu.c │ ├── stm32f10x_dma.c │ ├── stm32f10x_exti.c │ ├── stm32f10x_flash.c │ ├── stm32f10x_fsmc.c │ ├── stm32f10x_gpio.c │ ├── stm32f10x_i2c.c │ ├── stm32f10x_iwdg.c │ ├── stm32f10x_pwr.c │ ├── stm32f10x_rcc.c │ ├── stm32f10x_rtc.c │ ├── stm32f10x_sdio.c │ ├── stm32f10x_spi.c │ ├── stm32f10x_tim.c │ ├── stm32f10x_usart.c │ └── stm32f10x_wwdg.c ├── SYSTEM ├── delay │ ├── delay.c │ └── delay.h ├── sys │ ├── sys.c │ └── sys.h └── usart │ ├── usart.c │ └── usart.h ├── TEXT ├── fontupd.c ├── fontupd.h ├── text.c └── text.h ├── USER ├── DebugConfig │ └── alert_system_STM32F103ZE_1.0.0.dbgconf ├── JLinkSettings.ini ├── OV7725_OV7670.map ├── alert_system.map ├── alert_system.uvguix.Administrator ├── alert_system.uvguix.sdkj ├── alert_system.uvoptx ├── alert_system.uvprojx ├── main.c ├── startup_stm32f10x_hd.lst ├── stm32f10x.h ├── stm32f10x_conf.h ├── stm32f10x_it.c ├── stm32f10x_it.h ├── system_stm32f10x.c └── system_stm32f10x.h └── USMART ├── readme.txt ├── usmart.c ├── usmart.h ├── usmart_config.c ├── usmart_str.c └── usmart_str.h /.vscode/ipch/453683422fbca28d/MAIN.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/.vscode/ipch/453683422fbca28d/MAIN.ipch -------------------------------------------------------------------------------- /.vscode/ipch/4eb19b9270baef57/MAIN.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/.vscode/ipch/4eb19b9270baef57/MAIN.ipch -------------------------------------------------------------------------------- /.vscode/ipch/72c8e2f8fb9d3cd2/SYSTEM_STM32F10X.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/.vscode/ipch/72c8e2f8fb9d3cd2/SYSTEM_STM32F10X.ipch -------------------------------------------------------------------------------- /.vscode/ipch/99e777b845661fb7/BEEP.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/.vscode/ipch/99e777b845661fb7/BEEP.ipch -------------------------------------------------------------------------------- /.vscode/ipch/9a8ea75ed409e831/TIMER.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/.vscode/ipch/9a8ea75ed409e831/TIMER.ipch -------------------------------------------------------------------------------- /.vscode/ipch/b29bbed9a5333c27/LCD.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/.vscode/ipch/b29bbed9a5333c27/LCD.ipch -------------------------------------------------------------------------------- /.vscode/ipch/b867b6122859d1b3/USMART_STR.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/.vscode/ipch/b867b6122859d1b3/USMART_STR.ipch -------------------------------------------------------------------------------- /.vscode/ipch/f06f087705d86197/TIMER.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/.vscode/ipch/f06f087705d86197/TIMER.ipch -------------------------------------------------------------------------------- /CORE/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/CORE/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /FATFS/doc/css_e.css: -------------------------------------------------------------------------------- 1 | * {margin: 0; padding: 0; border-width: 0;} 2 | body {margin: 8px; background-color: #e0ffff; font-color: black; font-family: serif; line-height: 133%; max-width: 1024px;} 3 | a:link {color: blue;} 4 | a:visited {color: darkmagenta;} 5 | a:hover {background-color: #a0ffff;} 6 | a:active {color: darkmagenta; overflow: hidden; outline:none; position: relative; top: 1px; left: 1px;} 7 | abbr {border-width: 1px;} 8 | 9 | p {margin: 0 0 0.3em 1em;} 10 | i {margin: 0 0.3em 0 0;} 11 | b {margin: 0 0.1em;} 12 | em {font-style: normal; font-weight: bold; margin: 0 0.1em;} 13 | strong {} 14 | pre {border: 1px dashed gray; margin: 0.5em 1em; padding: 0.5em; line-height: 1.2em; font-size: 85%; font-family: "Consolas", "Courier New", monospace; background-color: white;} 15 | pre span.c {color: green;} 16 | pre span.k {color: blue;} 17 | pre span.arg {font-style: italic;} 18 | tt {margin: 0 0.2em; font-size: 0.85em; font-family: "Consolas", "Courier New", monospace; } 19 | tt.arg {font-style: italic;} 20 | ol {margin: 0.5em 2.5em;} 21 | ul {margin: 0.5em 2em;} 22 | dl {margin: 0.5em 1em;} 23 | dd {margin: 0 2em;} 24 | dt {font-size: 0.85em; font-family: "Consolas", "Courier New", monospace;} 25 | dl.par dt {margin: 0.5em 0 0 0 ; font-style: italic; } 26 | dl.ret dt {margin: 0.5em 0 0 0 ; font-size: 0.85em; font-family: "Consolas", "Courier New", monospace;} 27 | hr {border-width: 1px; margin: 1em;} 28 | div.abst {font-family: sans-serif;} 29 | div.para {clear: both; font-family: serif;} 30 | div.ret a {font-size: 0.85em; font-family: "Consolas", "Courier New", monospace; } 31 | .equ {text-indent: 0; margin: 1em 2em 1em;} 32 | .indent {margin-left: 2em;} 33 | .rset {float: right; margin: 0.3em 0 0.5em 0.5em;} 34 | .lset {float: left; margin: 0.3em 0.5em 0.5em 0.5em;} 35 | ul.flat li {list-style-type: none; margin: 0;} 36 | a.imglnk img {border: 1px solid;} 37 | .iequ {white-space: nowrap; font-weight: bold;} 38 | .clr {clear: both;} 39 | .it {font-style: italic;} 40 | .mfd {font-size: 0.7em; padding: 0 1px; border: 1px solid; white-space : nowrap} 41 | .ral {text-align: right; } 42 | .lal {text-align: left; } 43 | .cal {text-align: center; } 44 | 45 | h1 {line-height: 1em; font-size: 2em; font-family: sans-serif; padding: 0.3em 0 0.3em;} 46 | p.hdd {float: right; text-align: right; margin-top: 0.5em;} 47 | hr.hds {clear: both; margin-bottom: 1em;} 48 | 49 | h2 {font-size: 2em; font-family: sans-serif; background-color: #d8d8FF; padding: 0.5em 0.5em; margin: 0 0 0.5em;} 50 | h3 {font-size: 1.5em; font-family: sans-serif; margin: 1.5em 0 0.5em;} 51 | div.doc h3 {border-color: #b0d8d8; border-style: solid; border-width: 0px 0px 4px 12px; padding: 4px; margin-top: 2em;} 52 | h4 {font-size: 1.2em; font-family: sans-serif; margin: 1em 0 0.2em;} 53 | h5 {font-size: 1em; font-family: sans-serif; margin: 0.5em 0 0em;} 54 | small {font-size: 80%;} 55 | .indent {margin-left: 2em;} 56 | 57 | /* Tables */ 58 | table {margin: 0.5em 1em; border-collapse: collapse; border: 2px solid black; } 59 | th {background-color: white; border-style: solid; border-width: 1px 1px 2px; border-color: black; padding: 0 3px; vertical-align: top; white-space: nowrap;} 60 | td {background-color: white; border: 1px solid black; padding: 0 3px; vertical-align: top; line-height: 1.3em;} 61 | table.lst td:first-child {font-size: 0.85em; font-family: "Consolas", "Courier New", monospace;} 62 | table.lst2 td {font-size: 0.85em; font-family: "Consolas", "Courier New", monospace;} 63 | table caption {font-family: sans-serif; font-weight: bold;} 64 | tr.lst3 td { border-width: 2px 1px 1px; } 65 | 66 | p.foot {clear: both; text-indent: 0; margin: 1em 0.5em 1em;} 67 | -------------------------------------------------------------------------------- /FATFS/doc/css_j.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/css_j.css -------------------------------------------------------------------------------- /FATFS/doc/css_p.css: -------------------------------------------------------------------------------- 1 | body {margin: 8px; background-color: #ffecf0; font-color: black; font-family: serif; line-height: 133%; max-width: 1024px;} 2 | -------------------------------------------------------------------------------- /FATFS/doc/img/app1.c: -------------------------------------------------------------------------------- 1 | /*------------------------------------------------------------/ 2 | / Open or create a file in append mode 3 | /------------------------------------------------------------*/ 4 | 5 | FRESULT open_append ( 6 | FIL* fp, /* [OUT] File object to create */ 7 | const char* path /* [IN] File name to be opened */ 8 | ) 9 | { 10 | FRESULT fr; 11 | 12 | /* Opens an existing file. If not exist, creates a new file. */ 13 | fr = f_open(fp, path, FA_WRITE | FA_OPEN_ALWAYS); 14 | if (fr == FR_OK) { 15 | /* Seek to end of the file to append data */ 16 | fr = f_lseek(fp, f_size(fp)); 17 | if (fr != FR_OK) 18 | f_close(fp); 19 | } 20 | return fr; 21 | } 22 | 23 | 24 | int main (void) 25 | { 26 | FRESULT fr; 27 | FATFS fs; 28 | FIL fil; 29 | 30 | /* Open or create a log file and ready to append */ 31 | f_mount(&fs, "", 0); 32 | fr = open_append(&fil, "logfile.txt"); 33 | if (fr != FR_OK) return 1; 34 | 35 | /* Append a line */ 36 | f_printf(&fil, "%02u/%02u/%u, %2u:%02u\n", Mday, Mon, Year, Hour, Min); 37 | 38 | /* Close the file */ 39 | f_close(&fil); 40 | 41 | return 0; 42 | } 43 | 44 | -------------------------------------------------------------------------------- /FATFS/doc/img/app2.c: -------------------------------------------------------------------------------- 1 | /*------------------------------------------------------------/ 2 | / Remove all contents of a directory 3 | / This function works regardless of _FS_RPATH. 4 | /------------------------------------------------------------*/ 5 | 6 | 7 | FRESULT empty_directory ( 8 | char* path /* Working buffer filled with start directory */ 9 | ) 10 | { 11 | UINT i, j; 12 | FRESULT fr; 13 | DIR dir; 14 | FILINFO fno; 15 | 16 | #if _USE_LFN 17 | fno.lfname = 0; /* Disable LFN output */ 18 | #endif 19 | fr = f_opendir(&dir, path); 20 | if (fr == FR_OK) { 21 | for (i = 0; path[i]; i++) ; 22 | path[i++] = '/'; 23 | for (;;) { 24 | fr = f_readdir(&dir, &fno); 25 | if (fr != FR_OK || !fno.fname[0]) break; 26 | if (_FS_RPATH && fno.fname[0] == '.') continue; 27 | j = 0; 28 | do 29 | path[i+j] = fno.fname[j]; 30 | while (fno.fname[j++]); 31 | if (fno.fattrib & AM_DIR) { 32 | fr = empty_directory(path); 33 | if (fr != FR_OK) break; 34 | } 35 | fr = f_unlink(path); 36 | if (fr != FR_OK) break; 37 | } 38 | path[--i] = '\0'; 39 | closedir(&dir); 40 | } 41 | 42 | return fr; 43 | } 44 | 45 | 46 | 47 | int main (void) 48 | { 49 | FRESULT fr; 50 | FATFS fs; 51 | char buff[64]; /* Working buffer */ 52 | 53 | 54 | 55 | f_mount(&fs, "", 0); 56 | 57 | strcpy(buff, "/"); /* Directory to be emptied */ 58 | fr = empty_directory(buff); 59 | 60 | if (fr) { 61 | printf("Function failed. (%u)\n", fr); 62 | return fr; 63 | } else { 64 | printf("All contents in the %s are successfully removed.\n", buff); 65 | return 0; 66 | } 67 | } 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /FATFS/doc/img/app3.c: -------------------------------------------------------------------------------- 1 | /*----------------------------------------------------------------------/ 2 | / Allocate a contiguous area to the file 3 | /-----------------------------------------------------------------------/ 4 | / This function checks if the file is contiguous with desired size. 5 | / If not, a block of contiguous sectors is allocated to the file. 6 | / If the file has been opened without FA_WRITE flag, it only checks if 7 | / the file is contiguous and returns the resulut. */ 8 | 9 | #if _FATFS != 32020 /* Check if R0.11 */ 10 | #error This function may not be compatible with this revision of FatFs module. 11 | #endif 12 | 13 | /* Declarations of FatFs internal functions accessible from applications. 14 | / This is intended to be used for disk checking/fixing or dirty hacks :-) */ 15 | DWORD clust2sect (FATFS* fs, DWORD clst); 16 | DWORD get_fat (FATFS* fs, DWORD clst); 17 | FRESULT put_fat (FATFS* fs, DWORD clst, DWORD val); 18 | 19 | 20 | DWORD allocate_contiguous_clusters ( /* Returns the first sector in LBA (0:error or not contiguous) */ 21 | FIL* fp, /* Pointer to the open file object */ 22 | DWORD len /* Number of bytes to allocate */ 23 | ) 24 | { 25 | DWORD csz, tcl, ncl, ccl, cl; 26 | 27 | 28 | if (f_lseek(fp, 0) || !len) /* Check if the given parameters are valid */ 29 | return 0; 30 | csz = 512UL * fp->fs->csize; /* Cluster size in unit of byte (assuming 512 bytes/sector) */ 31 | tcl = (len + csz - 1) / csz; /* Total number of clusters required */ 32 | len = tcl * csz; /* Round-up file size to the cluster boundary */ 33 | 34 | /* Check if the existing cluster chain is contiguous */ 35 | if (len == fp->fsize) { 36 | ncl = 0; ccl = fp->sclust; 37 | do { 38 | cl = get_fat(fp->fs, ccl); /* Get the cluster status */ 39 | if (cl + 1 < 3) return 0; /* Hard error? */ 40 | if (cl != ccl + 1 &&; cl < fp->fs->n_fatent) break; /* Not contiguous? */ 41 | ccl = cl; 42 | } while (++ncl < tcl); 43 | if (ncl == tcl) /* Is the file contiguous? */ 44 | return clust2sect(fp->fs, fp->sclust); /* Return file start sector */ 45 | } 46 | #if _FS_READONLY 47 | return 0; 48 | #else 49 | if (f_truncate(fp)) return 0; /* Remove the existing chain */ 50 | 51 | /* Find a free contiguous area */ 52 | ccl = cl = 2; ncl = 0; 53 | do { 54 | if (cl >= fp->fs->n_fatent) return 0; /* No contiguous area is found. */ 55 | if (get_fat(fp->fs, cl)) { /* Encounterd a cluster in use */ 56 | do { /* Skip the block of used clusters */ 57 | cl++; 58 | if (cl >= fp->fs->n_fatent) return 0; /* No contiguous area is found. */ 59 | } while (get_fat(fp->fs, cl)); 60 | ccl = cl; ncl = 0; 61 | } 62 | cl++; ncl++; 63 | } while (ncl < tcl); 64 | 65 | /* Create a contiguous cluster chain */ 66 | fp->fs->last_clust = ccl - 1; 67 | if (f_lseek(fp, len)) return 0; 68 | 69 | return clust2sect(fp->fs, fp->sclust); /* Return file start sector */ 70 | #endif 71 | } 72 | 73 | 74 | int main (void) 75 | { 76 | FRESULT fr; 77 | DRESULT dr; 78 | FATFS fs; 79 | FIL fil; 80 | DWORD org; 81 | 82 | 83 | /* Open or create a file */ 84 | f_mount(&fs, "", 0); 85 | fr = f_open(&fil, "swapfile.sys", FA_READ | FA_WRITE | FA_OPEN_ALWAYS); 86 | if (fr) return 1; 87 | 88 | /* Check if the file is 64MB in size and occupies a contiguous area. 89 | / If not, a contiguous area will be re-allocated to the file. */ 90 | org = allocate_contiguous_clusters(&fil, 0x4000000); 91 | if (!org) { 92 | printf("Function failed due to any error or insufficient contiguous area.\n"); 93 | f_close(&fil); 94 | return 1; 95 | } 96 | 97 | /* Now you can read/write the file with disk functions bypassing the file system layer. */ 98 | 99 | dr = disk_write(fil.fs->drv, Buff, org, 1024); /* Write 512KiB from top of the file */ 100 | 101 | ... 102 | 103 | f_close(&fil); 104 | return 0; 105 | } 106 | 107 | -------------------------------------------------------------------------------- /FATFS/doc/img/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/f1.png -------------------------------------------------------------------------------- /FATFS/doc/img/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/f2.png -------------------------------------------------------------------------------- /FATFS/doc/img/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/f3.png -------------------------------------------------------------------------------- /FATFS/doc/img/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/f4.png -------------------------------------------------------------------------------- /FATFS/doc/img/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/f5.png -------------------------------------------------------------------------------- /FATFS/doc/img/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/f6.png -------------------------------------------------------------------------------- /FATFS/doc/img/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/f7.png -------------------------------------------------------------------------------- /FATFS/doc/img/funcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/funcs.png -------------------------------------------------------------------------------- /FATFS/doc/img/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/layers.png -------------------------------------------------------------------------------- /FATFS/doc/img/layers1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/layers1.png -------------------------------------------------------------------------------- /FATFS/doc/img/layers2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/layers2.png -------------------------------------------------------------------------------- /FATFS/doc/img/layers3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/layers3.png -------------------------------------------------------------------------------- /FATFS/doc/img/mkfatimg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/mkfatimg.zip -------------------------------------------------------------------------------- /FATFS/doc/img/modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/modules.png -------------------------------------------------------------------------------- /FATFS/doc/img/rwtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/rwtest.png -------------------------------------------------------------------------------- /FATFS/doc/img/rwtest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/rwtest2.png -------------------------------------------------------------------------------- /FATFS/doc/img/rwtest3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/doc/img/rwtest3.png -------------------------------------------------------------------------------- /FATFS/exfuns/exfuns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/exfuns/exfuns.c -------------------------------------------------------------------------------- /FATFS/exfuns/exfuns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/exfuns/exfuns.h -------------------------------------------------------------------------------- /FATFS/exfuns/fattester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/exfuns/fattester.c -------------------------------------------------------------------------------- /FATFS/exfuns/fattester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/exfuns/fattester.h -------------------------------------------------------------------------------- /FATFS/exfuns/mycc936.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/exfuns/mycc936.c -------------------------------------------------------------------------------- /FATFS/fattester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/fattester.c -------------------------------------------------------------------------------- /FATFS/fattester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/fattester.h -------------------------------------------------------------------------------- /FATFS/src/00readme.txt: -------------------------------------------------------------------------------- 1 | FatFs Module Source Files R0.11 2 | 3 | 4 | FILES 5 | 6 | 00readme.txt This file. 7 | history.txt Revision history. 8 | ffconf.h Configuration file for FatFs module. 9 | ff.h Common include file for FatFs and application module. 10 | ff.c FatFs module. 11 | diskio.h Common include file for FatFs and disk I/O module. 12 | diskio.c An example of glue function to attach existing disk I/O module to FatFs. 13 | integer.h Integer type definitions for FatFs. 14 | option Optional external functions. 15 | 16 | 17 | Low level disk I/O module is not included in this archive because the FatFs 18 | module is only a generic file system layer and not depend on any specific 19 | storage device. You have to provide a low level disk I/O module that written 20 | to control the target storage device. 21 | 22 | -------------------------------------------------------------------------------- /FATFS/src/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/src/diskio.c -------------------------------------------------------------------------------- /FATFS/src/diskio.h: -------------------------------------------------------------------------------- 1 | /*-----------------------------------------------------------------------/ 2 | / Low level disk interface modlue include file (C)ChaN, 2014 / 3 | /-----------------------------------------------------------------------*/ 4 | 5 | #ifndef _DISKIO_DEFINED 6 | #define _DISKIO_DEFINED 7 | 8 | #ifdef __cplusplus 9 | extern "C" { 10 | #endif 11 | 12 | #define _USE_WRITE 1 /* 1: Enable disk_write function */ 13 | #define _USE_IOCTL 1 /* 1: Enable disk_ioctl fucntion */ 14 | 15 | #include "integer.h" 16 | 17 | 18 | /* Status of Disk Functions */ 19 | typedef BYTE DSTATUS; 20 | 21 | /* Results of Disk Functions */ 22 | typedef enum { 23 | RES_OK = 0, /* 0: Successful */ 24 | RES_ERROR, /* 1: R/W Error */ 25 | RES_WRPRT, /* 2: Write Protected */ 26 | RES_NOTRDY, /* 3: Not Ready */ 27 | RES_PARERR /* 4: Invalid Parameter */ 28 | } DRESULT; 29 | 30 | 31 | /*---------------------------------------*/ 32 | /* Prototypes for disk control functions */ 33 | 34 | 35 | DSTATUS disk_initialize (BYTE pdrv); 36 | DSTATUS disk_status (BYTE pdrv); 37 | DRESULT disk_read (BYTE pdrv, BYTE* buff, DWORD sector, UINT count); 38 | DRESULT disk_write (BYTE pdrv, const BYTE* buff, DWORD sector, UINT count); 39 | DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff); 40 | 41 | 42 | /* Disk Status Bits (DSTATUS) */ 43 | 44 | #define STA_NOINIT 0x01 /* Drive not initialized */ 45 | #define STA_NODISK 0x02 /* No medium in the drive */ 46 | #define STA_PROTECT 0x04 /* Write protected */ 47 | 48 | 49 | /* Command code for disk_ioctrl fucntion */ 50 | 51 | /* Generic command (Used by FatFs) */ 52 | #define CTRL_SYNC 0 /* Complete pending write process (needed at _FS_READONLY == 0) */ 53 | #define GET_SECTOR_COUNT 1 /* Get media size (needed at _USE_MKFS == 1) */ 54 | #define GET_SECTOR_SIZE 2 /* Get sector size (needed at _MAX_SS != _MIN_SS) */ 55 | #define GET_BLOCK_SIZE 3 /* Get erase block size (needed at _USE_MKFS == 1) */ 56 | #define CTRL_TRIM 4 /* Inform device that the data on the block of sectors is no longer used (needed at _USE_TRIM == 1) */ 57 | 58 | /* Generic command (Not used by FatFs) */ 59 | #define CTRL_POWER 5 /* Get/Set power status */ 60 | #define CTRL_LOCK 6 /* Lock/Unlock media removal */ 61 | #define CTRL_EJECT 7 /* Eject media */ 62 | #define CTRL_FORMAT 8 /* Create physical format on the media */ 63 | 64 | /* MMC/SDC specific ioctl command */ 65 | #define MMC_GET_TYPE 10 /* Get card type */ 66 | #define MMC_GET_CSD 11 /* Get CSD */ 67 | #define MMC_GET_CID 12 /* Get CID */ 68 | #define MMC_GET_OCR 13 /* Get OCR */ 69 | #define MMC_GET_SDSTAT 14 /* Get SD status */ 70 | 71 | /* ATA/CF specific ioctl command */ 72 | #define ATA_GET_REV 20 /* Get F/W revision */ 73 | #define ATA_GET_MODEL 21 /* Get model name */ 74 | #define ATA_GET_SN 22 /* Get serial number */ 75 | 76 | #ifdef __cplusplus 77 | } 78 | #endif 79 | 80 | #endif 81 | -------------------------------------------------------------------------------- /FATFS/src/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/src/ff.c -------------------------------------------------------------------------------- /FATFS/src/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/src/ff.h -------------------------------------------------------------------------------- /FATFS/src/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/src/ffconf.h -------------------------------------------------------------------------------- /FATFS/src/integer.h: -------------------------------------------------------------------------------- 1 | /*-------------------------------------------*/ 2 | /* Integer type definitions for FatFs module */ 3 | /*-------------------------------------------*/ 4 | 5 | #ifndef _FF_INTEGER 6 | #define _FF_INTEGER 7 | 8 | #ifdef _WIN32 /* FatFs development platform */ 9 | 10 | #include 11 | #include 12 | 13 | #else /* Embedded platform */ 14 | 15 | /* This type MUST be 8 bit */ 16 | typedef unsigned char BYTE; 17 | 18 | /* These types MUST be 16 bit */ 19 | typedef short SHORT; 20 | typedef unsigned short WORD; 21 | typedef unsigned short WCHAR; 22 | 23 | /* These types MUST be 16 bit or 32 bit */ 24 | typedef int INT; 25 | typedef unsigned int UINT; 26 | 27 | /* These types MUST be 32 bit */ 28 | typedef long LONG; 29 | typedef unsigned long DWORD; 30 | 31 | #endif 32 | 33 | #endif 34 | -------------------------------------------------------------------------------- /FATFS/src/option/mycc936.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/FATFS/src/option/mycc936.c -------------------------------------------------------------------------------- /FATFS/src/option/syscall.c: -------------------------------------------------------------------------------- 1 | /*------------------------------------------------------------------------*/ 2 | /* Sample code of OS dependent controls for FatFs */ 3 | /* (C)ChaN, 2014 */ 4 | /*------------------------------------------------------------------------*/ 5 | 6 | 7 | #include "../ff.h" 8 | 9 | 10 | #if _FS_REENTRANT 11 | /*------------------------------------------------------------------------*/ 12 | /* Create a Synchronization Object 13 | /*------------------------------------------------------------------------*/ 14 | /* This function is called in f_mount() function to create a new 15 | / synchronization object, such as semaphore and mutex. When a 0 is returned, 16 | / the f_mount() function fails with FR_INT_ERR. 17 | */ 18 | 19 | int ff_cre_syncobj ( /* !=0:Function succeeded, ==0:Could not create due to any error */ 20 | BYTE vol, /* Corresponding logical drive being processed */ 21 | _SYNC_t *sobj /* Pointer to return the created sync object */ 22 | ) 23 | { 24 | int ret; 25 | 26 | 27 | *sobj = CreateMutex(NULL, FALSE, NULL); /* Win32 */ 28 | ret = (int)(*sobj != INVALID_HANDLE_VALUE); 29 | 30 | // *sobj = SyncObjects[vol]; /* uITRON (give a static created sync object) */ 31 | // ret = 1; /* The initial value of the semaphore must be 1. */ 32 | 33 | // *sobj = OSMutexCreate(0, &err); /* uC/OS-II */ 34 | // ret = (int)(err == OS_NO_ERR); 35 | 36 | // *sobj = xSemaphoreCreateMutex(); /* FreeRTOS */ 37 | // ret = (int)(*sobj != NULL); 38 | 39 | return ret; 40 | } 41 | 42 | 43 | 44 | /*------------------------------------------------------------------------*/ 45 | /* Delete a Synchronization Object */ 46 | /*------------------------------------------------------------------------*/ 47 | /* This function is called in f_mount() function to delete a synchronization 48 | / object that created with ff_cre_syncobj function. When a 0 is returned, 49 | / the f_mount() function fails with FR_INT_ERR. 50 | */ 51 | 52 | int ff_del_syncobj ( /* !=0:Function succeeded, ==0:Could not delete due to any error */ 53 | _SYNC_t sobj /* Sync object tied to the logical drive to be deleted */ 54 | ) 55 | { 56 | int ret; 57 | 58 | 59 | ret = CloseHandle(sobj); /* Win32 */ 60 | 61 | // ret = 1; /* uITRON (nothing to do) */ 62 | 63 | // OSMutexDel(sobj, OS_DEL_ALWAYS, &err); /* uC/OS-II */ 64 | // ret = (int)(err == OS_NO_ERR); 65 | 66 | // vSemaphoreDelete(sobj); /* FreeRTOS */ 67 | // ret = 1; 68 | 69 | return ret; 70 | } 71 | 72 | 73 | 74 | /*------------------------------------------------------------------------*/ 75 | /* Request Grant to Access the Volume */ 76 | /*------------------------------------------------------------------------*/ 77 | /* This function is called on entering file functions to lock the volume. 78 | / When a 0 is returned, the file function fails with FR_TIMEOUT. 79 | */ 80 | 81 | int ff_req_grant ( /* 1:Got a grant to access the volume, 0:Could not get a grant */ 82 | _SYNC_t sobj /* Sync object to wait */ 83 | ) 84 | { 85 | int ret; 86 | 87 | ret = (int)(WaitForSingleObject(sobj, _FS_TIMEOUT) == WAIT_OBJECT_0); /* Win32 */ 88 | 89 | // ret = (int)(wai_sem(sobj) == E_OK); /* uITRON */ 90 | 91 | // OSMutexPend(sobj, _FS_TIMEOUT, &err)); /* uC/OS-II */ 92 | // ret = (int)(err == OS_NO_ERR); 93 | 94 | // ret = (int)(xSemaphoreTake(sobj, _FS_TIMEOUT) == pdTRUE); /* FreeRTOS */ 95 | 96 | return ret; 97 | } 98 | 99 | 100 | 101 | /*------------------------------------------------------------------------*/ 102 | /* Release Grant to Access the Volume */ 103 | /*------------------------------------------------------------------------*/ 104 | /* This function is called on leaving file functions to unlock the volume. 105 | */ 106 | 107 | void ff_rel_grant ( 108 | _SYNC_t sobj /* Sync object to be signaled */ 109 | ) 110 | { 111 | ReleaseMutex(sobj); /* Win32 */ 112 | 113 | // sig_sem(sobj); /* uITRON */ 114 | 115 | // OSMutexPost(sobj); /* uC/OS-II */ 116 | 117 | // xSemaphoreGive(sobj); /* FreeRTOS */ 118 | } 119 | 120 | #endif 121 | 122 | 123 | 124 | 125 | #if _USE_LFN == 3 /* LFN with a working buffer on the heap */ 126 | /*------------------------------------------------------------------------*/ 127 | /* Allocate a memory block */ 128 | /*------------------------------------------------------------------------*/ 129 | /* If a NULL is returned, the file function fails with FR_NOT_ENOUGH_CORE. 130 | */ 131 | 132 | void* ff_memalloc ( /* Returns pointer to the allocated memory block */ 133 | UINT msize /* Number of bytes to allocate */ 134 | ) 135 | { 136 | return malloc(msize); /* Allocate a new memory block with POSIX API */ 137 | } 138 | 139 | 140 | /*------------------------------------------------------------------------*/ 141 | /* Free a memory block */ 142 | /*------------------------------------------------------------------------*/ 143 | 144 | void ff_memfree ( 145 | void* mblock /* Pointer to the memory block to free */ 146 | ) 147 | { 148 | free(mblock); /* Discard the memory block with POSIX API */ 149 | } 150 | 151 | #endif 152 | -------------------------------------------------------------------------------- /FATFS/src/option/unicode.c: -------------------------------------------------------------------------------- 1 | #include "../ff.h" 2 | 3 | #if _USE_LFN != 0 4 | 5 | #if _CODE_PAGE == 932 /* Japanese Shift_JIS */ 6 | #include "cc932.c" 7 | #elif _CODE_PAGE == 936 /* Simplified Chinese GBK */ 8 | #include "cc936.c" 9 | #elif _CODE_PAGE == 949 /* Korean */ 10 | #include "cc949.c" 11 | #elif _CODE_PAGE == 950 /* Traditional Chinese Big5 */ 12 | #include "cc950.c" 13 | #else /* Single Byte Character-Set */ 14 | #include "ccsbcs.c" 15 | #endif 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /HARDWARE/24CXX/24cxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/24CXX/24cxx.c -------------------------------------------------------------------------------- /HARDWARE/24CXX/24cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/24CXX/24cxx.h -------------------------------------------------------------------------------- /HARDWARE/ADC/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/ADC/adc.c -------------------------------------------------------------------------------- /HARDWARE/ADC/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/ADC/adc.h -------------------------------------------------------------------------------- /HARDWARE/BEEP/beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/BEEP/beep.c -------------------------------------------------------------------------------- /HARDWARE/BEEP/beep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/BEEP/beep.h -------------------------------------------------------------------------------- /HARDWARE/EXTI/exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/EXTI/exti.c -------------------------------------------------------------------------------- /HARDWARE/EXTI/exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/EXTI/exti.h -------------------------------------------------------------------------------- /HARDWARE/IIC/myiic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/IIC/myiic.c -------------------------------------------------------------------------------- /HARDWARE/IIC/myiic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/IIC/myiic.h -------------------------------------------------------------------------------- /HARDWARE/KEY/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/KEY/key.c -------------------------------------------------------------------------------- /HARDWARE/KEY/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/KEY/key.h -------------------------------------------------------------------------------- /HARDWARE/LCD/ILI93xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/LCD/ILI93xx.c -------------------------------------------------------------------------------- /HARDWARE/LCD/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/LCD/font.h -------------------------------------------------------------------------------- /HARDWARE/LCD/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/LCD/lcd.c -------------------------------------------------------------------------------- /HARDWARE/LCD/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/LCD/lcd.h -------------------------------------------------------------------------------- /HARDWARE/LED/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/LED/led.c -------------------------------------------------------------------------------- /HARDWARE/LED/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/LED/led.h -------------------------------------------------------------------------------- /HARDWARE/LSENS/lsens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/LSENS/lsens.c -------------------------------------------------------------------------------- /HARDWARE/LSENS/lsens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/LSENS/lsens.h -------------------------------------------------------------------------------- /HARDWARE/OV7670/ov7670.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7670/ov7670.c -------------------------------------------------------------------------------- /HARDWARE/OV7670/ov7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7670/ov7670.h -------------------------------------------------------------------------------- /HARDWARE/OV7670/ov7670cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7670/ov7670cfg.h -------------------------------------------------------------------------------- /HARDWARE/OV7670/sccb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7670/sccb.c -------------------------------------------------------------------------------- /HARDWARE/OV7670/sccb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7670/sccb.h -------------------------------------------------------------------------------- /HARDWARE/OV7725/ov7725.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7725/ov7725.c -------------------------------------------------------------------------------- /HARDWARE/OV7725/ov7725.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7725/ov7725.h -------------------------------------------------------------------------------- /HARDWARE/OV7725/ov7725config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7725/ov7725config.h -------------------------------------------------------------------------------- /HARDWARE/OV7725/sccb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7725/sccb.c -------------------------------------------------------------------------------- /HARDWARE/OV7725/sccb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/OV7725/sccb.h -------------------------------------------------------------------------------- /HARDWARE/SDIO/sdio_sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/SDIO/sdio_sdcard.c -------------------------------------------------------------------------------- /HARDWARE/SDIO/sdio_sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/SDIO/sdio_sdcard.h -------------------------------------------------------------------------------- /HARDWARE/SPI/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/SPI/spi.c -------------------------------------------------------------------------------- /HARDWARE/SPI/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/SPI/spi.h -------------------------------------------------------------------------------- /HARDWARE/SRAM/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/SRAM/sram.c -------------------------------------------------------------------------------- /HARDWARE/SRAM/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/SRAM/sram.h -------------------------------------------------------------------------------- /HARDWARE/STMFLASH/stmflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/STMFLASH/stmflash.c -------------------------------------------------------------------------------- /HARDWARE/STMFLASH/stmflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/STMFLASH/stmflash.h -------------------------------------------------------------------------------- /HARDWARE/TIMER/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TIMER/timer.c -------------------------------------------------------------------------------- /HARDWARE/TIMER/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TIMER/timer.h -------------------------------------------------------------------------------- /HARDWARE/TOUCH/ctiic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/ctiic.c -------------------------------------------------------------------------------- /HARDWARE/TOUCH/ctiic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/ctiic.h -------------------------------------------------------------------------------- /HARDWARE/TOUCH/ft5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/ft5206.c -------------------------------------------------------------------------------- /HARDWARE/TOUCH/ft5206.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/ft5206.h -------------------------------------------------------------------------------- /HARDWARE/TOUCH/gt9147.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/gt9147.c -------------------------------------------------------------------------------- /HARDWARE/TOUCH/gt9147.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/gt9147.h -------------------------------------------------------------------------------- /HARDWARE/TOUCH/ott2001a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/ott2001a.c -------------------------------------------------------------------------------- /HARDWARE/TOUCH/ott2001a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/ott2001a.h -------------------------------------------------------------------------------- /HARDWARE/TOUCH/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/touch.c -------------------------------------------------------------------------------- /HARDWARE/TOUCH/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TOUCH/touch.h -------------------------------------------------------------------------------- /HARDWARE/TPAD/tpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TPAD/tpad.c -------------------------------------------------------------------------------- /HARDWARE/TPAD/tpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/TPAD/tpad.h -------------------------------------------------------------------------------- /HARDWARE/W25QXX/w25qxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/W25QXX/w25qxx.c -------------------------------------------------------------------------------- /HARDWARE/W25QXX/w25qxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/HARDWARE/W25QXX/w25qxx.h -------------------------------------------------------------------------------- /MALLOC/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/MALLOC/malloc.c -------------------------------------------------------------------------------- /MALLOC/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/MALLOC/malloc.h -------------------------------------------------------------------------------- /OBJ/24cxx.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/24cxx.crf -------------------------------------------------------------------------------- /OBJ/24cxx.d: -------------------------------------------------------------------------------- 1 | ..\obj\24cxx.o: ..\HARDWARE\24CXX\24cxx.c 2 | ..\obj\24cxx.o: ..\HARDWARE\24CXX\24cxx.h 3 | ..\obj\24cxx.o: ..\HARDWARE\IIC\myiic.h 4 | ..\obj\24cxx.o: ..\SYSTEM\sys\sys.h 5 | ..\obj\24cxx.o: ..\USER\stm32f10x.h 6 | ..\obj\24cxx.o: ..\CORE\core_cm3.h 7 | ..\obj\24cxx.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 8 | ..\obj\24cxx.o: ..\USER\system_stm32f10x.h 9 | ..\obj\24cxx.o: ..\USER\stm32f10x_conf.h 10 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 11 | ..\obj\24cxx.o: ..\USER\stm32f10x.h 12 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 13 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 14 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 15 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 16 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 17 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 18 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 19 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 20 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 21 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 22 | ..\obj\24cxx.o: ..\STM32F10x_FWLib\inc\misc.h 23 | ..\obj\24cxx.o: ..\SYSTEM\delay\delay.h 24 | -------------------------------------------------------------------------------- /OBJ/24cxx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/24cxx.o -------------------------------------------------------------------------------- /OBJ/ExtDll.iex: -------------------------------------------------------------------------------- 1 | [EXTDLL] 2 | Count=0 3 | -------------------------------------------------------------------------------- /OBJ/OV7725_OV7670.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/OV7725_OV7670.axf -------------------------------------------------------------------------------- /OBJ/OV7725_OV7670.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/OV7725_OV7670.build_log.htm -------------------------------------------------------------------------------- /OBJ/OV7725_OV7670.lnp: -------------------------------------------------------------------------------- 1 | --cpu Cortex-M3 2 | "..\obj\main.o" 3 | "..\obj\stm32f10x_it.o" 4 | "..\obj\system_stm32f10x.o" 5 | "..\obj\led.o" 6 | "..\obj\key.o" 7 | "..\obj\lcd.o" 8 | "..\obj\tpad.o" 9 | "..\obj\exti.o" 10 | "..\obj\timer.o" 11 | "..\obj\sccb.o" 12 | "..\obj\ov7670.o" 13 | "..\obj\ov7725.o" 14 | "..\obj\sram.o" 15 | "..\obj\beep.o" 16 | "..\obj\adc.o" 17 | "..\obj\lsens.o" 18 | "..\obj\stmflash.o" 19 | "..\obj\ctiic.o" 20 | "..\obj\ft5206.o" 21 | "..\obj\gt9147.o" 22 | "..\obj\ott2001a.o" 23 | "..\obj\touch.o" 24 | "..\obj\24cxx.o" 25 | "..\obj\myiic.o" 26 | "..\obj\w25qxx.o" 27 | "..\obj\spi.o" 28 | "..\obj\sdio_sdcard.o" 29 | "..\obj\delay.o" 30 | "..\obj\sys.o" 31 | "..\obj\usart.o" 32 | "..\obj\core_cm3.o" 33 | "..\obj\startup_stm32f10x_hd.o" 34 | "..\obj\misc.o" 35 | "..\obj\stm32f10x_fsmc.o" 36 | "..\obj\stm32f10x_gpio.o" 37 | "..\obj\stm32f10x_rcc.o" 38 | "..\obj\stm32f10x_usart.o" 39 | "..\obj\stm32f10x_exti.o" 40 | "..\obj\stm32f10x_tim.o" 41 | "..\obj\stm32f10x_adc.o" 42 | "..\obj\stm32f10x_flash.o" 43 | "..\obj\stm32f10x_spi.o" 44 | "..\obj\stm32f10x_sdio.o" 45 | "..\obj\stm32f10x_dma.o" 46 | "..\obj\usmart.o" 47 | "..\obj\usmart_config.o" 48 | "..\obj\usmart_str.o" 49 | "..\obj\diskio.o" 50 | "..\obj\ff.o" 51 | "..\obj\exfuns.o" 52 | "..\obj\fattester.o" 53 | "..\obj\mycc936.o" 54 | "..\obj\malloc.o" 55 | "..\obj\bmp.o" 56 | "..\obj\gif.o" 57 | "..\obj\piclib.o" 58 | "..\obj\tjpgd.o" 59 | "..\obj\fontupd.o" 60 | "..\obj\text.o" 61 | --strict --scatter "..\OBJ\OV7725_OV7670.sct" 62 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols 63 | --info sizes --info totals --info unused --info veneers 64 | --list ".\OV7725_OV7670.map" -o ..\OBJ\OV7725_OV7670.axf -------------------------------------------------------------------------------- /OBJ/OV7725_OV7670.sct: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x08000000 0x00080000 { ; load region size_region 6 | ER_IROM1 0x08000000 0x00080000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | } 11 | RW_IRAM1 0x20000000 0x00010000 { ; RW data 12 | .ANY (+RW +ZI) 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /OBJ/OV7725_OV7670_OV7725_OV7670.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/OV7725_OV7670_OV7725_OV7670.dep -------------------------------------------------------------------------------- /OBJ/adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/adc.crf -------------------------------------------------------------------------------- /OBJ/adc.d: -------------------------------------------------------------------------------- 1 | ..\obj\adc.o: ..\HARDWARE\ADC\adc.c 2 | ..\obj\adc.o: ..\SYSTEM\delay\delay.h 3 | ..\obj\adc.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\adc.o: ..\USER\stm32f10x.h 5 | ..\obj\adc.o: ..\CORE\core_cm3.h 6 | ..\obj\adc.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\adc.o: ..\USER\system_stm32f10x.h 8 | ..\obj\adc.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\adc.o: ..\USER\stm32f10x.h 11 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\misc.h 22 | -------------------------------------------------------------------------------- /OBJ/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/adc.o -------------------------------------------------------------------------------- /OBJ/alert_system_alert_system.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/alert_system_alert_system.dep -------------------------------------------------------------------------------- /OBJ/beep.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/beep.crf -------------------------------------------------------------------------------- /OBJ/beep.d: -------------------------------------------------------------------------------- 1 | ..\obj\beep.o: ..\HARDWARE\BEEP\beep.c 2 | ..\obj\beep.o: ..\HARDWARE\BEEP\beep.h 3 | ..\obj\beep.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\beep.o: ..\USER\stm32f10x.h 5 | ..\obj\beep.o: ..\CORE\core_cm3.h 6 | ..\obj\beep.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\beep.o: ..\USER\system_stm32f10x.h 8 | ..\obj\beep.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\beep.o: ..\USER\stm32f10x.h 11 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\misc.h 22 | -------------------------------------------------------------------------------- /OBJ/beep.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/beep.o -------------------------------------------------------------------------------- /OBJ/bmp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/bmp.crf -------------------------------------------------------------------------------- /OBJ/bmp.d: -------------------------------------------------------------------------------- 1 | ..\obj\bmp.o: ..\PICTURE\bmp.c 2 | ..\obj\bmp.o: ..\PICTURE\piclib.h 3 | ..\obj\bmp.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\bmp.o: ..\USER\stm32f10x.h 5 | ..\obj\bmp.o: ..\CORE\core_cm3.h 6 | ..\obj\bmp.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\bmp.o: ..\USER\system_stm32f10x.h 8 | ..\obj\bmp.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\bmp.o: ..\USER\stm32f10x.h 11 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\bmp.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\bmp.o: ..\HARDWARE\LCD\lcd.h 23 | ..\obj\bmp.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 24 | ..\obj\bmp.o: ..\MALLOC\malloc.h 25 | ..\obj\bmp.o: ..\FATFS\src\ff.h 26 | ..\obj\bmp.o: ..\FATFS\src\integer.h 27 | ..\obj\bmp.o: ..\FATFS\src\ffconf.h 28 | ..\obj\bmp.o: ..\FATFS\exfuns\exfuns.h 29 | ..\obj\bmp.o: ..\PICTURE\bmp.h 30 | ..\obj\bmp.o: ..\PICTURE\tjpgd.h 31 | ..\obj\bmp.o: ..\PICTURE\integer.h 32 | ..\obj\bmp.o: ..\PICTURE\gif.h 33 | ..\obj\bmp.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\string.h 34 | -------------------------------------------------------------------------------- /OBJ/bmp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/bmp.o -------------------------------------------------------------------------------- /OBJ/core_cm3.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/core_cm3.crf -------------------------------------------------------------------------------- /OBJ/core_cm3.d: -------------------------------------------------------------------------------- 1 | ..\obj\core_cm3.o: ..\CORE\core_cm3.c 2 | ..\obj\core_cm3.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 3 | -------------------------------------------------------------------------------- /OBJ/core_cm3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/core_cm3.o -------------------------------------------------------------------------------- /OBJ/ctiic.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ctiic.crf -------------------------------------------------------------------------------- /OBJ/ctiic.d: -------------------------------------------------------------------------------- 1 | ..\obj\ctiic.o: ..\HARDWARE\TOUCH\ctiic.c 2 | ..\obj\ctiic.o: ..\HARDWARE\TOUCH\ctiic.h 3 | ..\obj\ctiic.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\ctiic.o: ..\USER\stm32f10x.h 5 | ..\obj\ctiic.o: ..\CORE\core_cm3.h 6 | ..\obj\ctiic.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\ctiic.o: ..\USER\system_stm32f10x.h 8 | ..\obj\ctiic.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\ctiic.o: ..\USER\stm32f10x.h 11 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\ctiic.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\ctiic.o: ..\SYSTEM\delay\delay.h 23 | -------------------------------------------------------------------------------- /OBJ/ctiic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ctiic.o -------------------------------------------------------------------------------- /OBJ/delay.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/delay.crf -------------------------------------------------------------------------------- /OBJ/delay.d: -------------------------------------------------------------------------------- 1 | ..\obj\delay.o: ..\SYSTEM\delay\delay.c 2 | ..\obj\delay.o: ..\SYSTEM\delay\delay.h 3 | ..\obj\delay.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\delay.o: ..\USER\stm32f10x.h 5 | ..\obj\delay.o: ..\CORE\core_cm3.h 6 | ..\obj\delay.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\delay.o: ..\USER\system_stm32f10x.h 8 | ..\obj\delay.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\delay.o: ..\USER\stm32f10x.h 11 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\misc.h 22 | -------------------------------------------------------------------------------- /OBJ/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/delay.o -------------------------------------------------------------------------------- /OBJ/diskio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/diskio.crf -------------------------------------------------------------------------------- /OBJ/diskio.d: -------------------------------------------------------------------------------- 1 | ..\obj\diskio.o: ..\FATFS\src\diskio.c 2 | ..\obj\diskio.o: ..\FATFS\src\diskio.h 3 | ..\obj\diskio.o: ..\FATFS\src\integer.h 4 | ..\obj\diskio.o: ..\HARDWARE\SDIO\sdio_sdcard.h 5 | ..\obj\diskio.o: ..\USER\stm32f10x.h 6 | ..\obj\diskio.o: ..\CORE\core_cm3.h 7 | ..\obj\diskio.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 8 | ..\obj\diskio.o: ..\USER\system_stm32f10x.h 9 | ..\obj\diskio.o: ..\USER\stm32f10x_conf.h 10 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 11 | ..\obj\diskio.o: ..\USER\stm32f10x.h 12 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 13 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 14 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 15 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 16 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 17 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 18 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 19 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 20 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 21 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 22 | ..\obj\diskio.o: ..\STM32F10x_FWLib\inc\misc.h 23 | ..\obj\diskio.o: ..\HARDWARE\W25QXX\w25qxx.h 24 | ..\obj\diskio.o: ..\SYSTEM\sys\sys.h 25 | ..\obj\diskio.o: ..\MALLOC\malloc.h 26 | -------------------------------------------------------------------------------- /OBJ/diskio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/diskio.o -------------------------------------------------------------------------------- /OBJ/exfuns.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/exfuns.crf -------------------------------------------------------------------------------- /OBJ/exfuns.d: -------------------------------------------------------------------------------- 1 | ..\obj\exfuns.o: ..\FATFS\exfuns\exfuns.c 2 | ..\obj\exfuns.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\string.h 3 | ..\obj\exfuns.o: ..\FATFS\exfuns\exfuns.h 4 | ..\obj\exfuns.o: ..\USER\stm32f10x.h 5 | ..\obj\exfuns.o: ..\CORE\core_cm3.h 6 | ..\obj\exfuns.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\exfuns.o: ..\USER\system_stm32f10x.h 8 | ..\obj\exfuns.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\exfuns.o: ..\USER\stm32f10x.h 11 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\exfuns.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\exfuns.o: ..\FATFS\src\ff.h 23 | ..\obj\exfuns.o: ..\FATFS\src\integer.h 24 | ..\obj\exfuns.o: ..\FATFS\src\ffconf.h 25 | ..\obj\exfuns.o: ..\FATFS\exfuns\fattester.h 26 | ..\obj\exfuns.o: ..\MALLOC\malloc.h 27 | ..\obj\exfuns.o: ..\SYSTEM\usart\usart.h 28 | ..\obj\exfuns.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 29 | ..\obj\exfuns.o: ..\SYSTEM\sys\sys.h 30 | -------------------------------------------------------------------------------- /OBJ/exfuns.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/exfuns.o -------------------------------------------------------------------------------- /OBJ/exti.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/exti.crf -------------------------------------------------------------------------------- /OBJ/exti.d: -------------------------------------------------------------------------------- 1 | ..\obj\exti.o: ..\HARDWARE\EXTI\exti.c 2 | ..\obj\exti.o: ..\HARDWARE\EXTI\exti.h 3 | ..\obj\exti.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\exti.o: ..\USER\stm32f10x.h 5 | ..\obj\exti.o: ..\CORE\core_cm3.h 6 | ..\obj\exti.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\exti.o: ..\USER\system_stm32f10x.h 8 | ..\obj\exti.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\exti.o: ..\USER\stm32f10x.h 11 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\exti.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\exti.o: ..\SYSTEM\delay\delay.h 23 | ..\obj\exti.o: ..\HARDWARE\LED\led.h 24 | ..\obj\exti.o: ..\HARDWARE\KEY\key.h 25 | ..\obj\exti.o: ..\HARDWARE\BEEP\beep.h 26 | ..\obj\exti.o: ..\HARDWARE\OV7725\ov7725.h 27 | ..\obj\exti.o: ..\HARDWARE\OV7725\sccb.h 28 | -------------------------------------------------------------------------------- /OBJ/exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/exti.o -------------------------------------------------------------------------------- /OBJ/fattester.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/fattester.crf -------------------------------------------------------------------------------- /OBJ/fattester.d: -------------------------------------------------------------------------------- 1 | ..\obj\fattester.o: ..\FATFS\exfuns\fattester.c 2 | ..\obj\fattester.o: ..\FATFS\exfuns\fattester.h 3 | ..\obj\fattester.o: ..\USER\stm32f10x.h 4 | ..\obj\fattester.o: ..\CORE\core_cm3.h 5 | ..\obj\fattester.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\fattester.o: ..\USER\system_stm32f10x.h 7 | ..\obj\fattester.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\fattester.o: ..\USER\stm32f10x.h 10 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\fattester.o: ..\STM32F10x_FWLib\inc\misc.h 21 | ..\obj\fattester.o: ..\FATFS\src\ff.h 22 | ..\obj\fattester.o: ..\FATFS\src\integer.h 23 | ..\obj\fattester.o: ..\FATFS\src\ffconf.h 24 | ..\obj\fattester.o: ..\HARDWARE\SDIO\sdio_sdcard.h 25 | ..\obj\fattester.o: ..\USMART\usmart.h 26 | ..\obj\fattester.o: ..\USMART\usmart_str.h 27 | ..\obj\fattester.o: ..\SYSTEM\usart\usart.h 28 | ..\obj\fattester.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 29 | ..\obj\fattester.o: ..\SYSTEM\sys\sys.h 30 | ..\obj\fattester.o: ..\FATFS\exfuns\exfuns.h 31 | ..\obj\fattester.o: ..\MALLOC\malloc.h 32 | ..\obj\fattester.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\string.h 33 | -------------------------------------------------------------------------------- /OBJ/fattester.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/fattester.o -------------------------------------------------------------------------------- /OBJ/ff.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ff.crf -------------------------------------------------------------------------------- /OBJ/ff.d: -------------------------------------------------------------------------------- 1 | ..\obj\ff.o: ..\FATFS\src\ff.c 2 | ..\obj\ff.o: ..\FATFS\src\ff.h 3 | ..\obj\ff.o: ..\FATFS\src\integer.h 4 | ..\obj\ff.o: ..\FATFS\src\ffconf.h 5 | ..\obj\ff.o: ..\FATFS\src\diskio.h 6 | ..\obj\ff.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdarg.h 7 | -------------------------------------------------------------------------------- /OBJ/ff.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ff.o -------------------------------------------------------------------------------- /OBJ/fontupd.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/fontupd.crf -------------------------------------------------------------------------------- /OBJ/fontupd.d: -------------------------------------------------------------------------------- 1 | ..\obj\fontupd.o: ..\TEXT\fontupd.c 2 | ..\obj\fontupd.o: ..\TEXT\fontupd.h 3 | ..\obj\fontupd.o: ..\USER\stm32f10x.h 4 | ..\obj\fontupd.o: ..\CORE\core_cm3.h 5 | ..\obj\fontupd.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\fontupd.o: ..\USER\system_stm32f10x.h 7 | ..\obj\fontupd.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\fontupd.o: ..\USER\stm32f10x.h 10 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\fontupd.o: ..\STM32F10x_FWLib\inc\misc.h 21 | ..\obj\fontupd.o: ..\FATFS\src\ff.h 22 | ..\obj\fontupd.o: ..\FATFS\src\integer.h 23 | ..\obj\fontupd.o: ..\FATFS\src\ffconf.h 24 | ..\obj\fontupd.o: ..\HARDWARE\W25QXX\w25qxx.h 25 | ..\obj\fontupd.o: ..\SYSTEM\sys\sys.h 26 | ..\obj\fontupd.o: ..\HARDWARE\LCD\lcd.h 27 | ..\obj\fontupd.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 28 | ..\obj\fontupd.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\string.h 29 | ..\obj\fontupd.o: ..\MALLOC\malloc.h 30 | ..\obj\fontupd.o: ..\SYSTEM\delay\delay.h 31 | ..\obj\fontupd.o: ..\SYSTEM\usart\usart.h 32 | ..\obj\fontupd.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 33 | -------------------------------------------------------------------------------- /OBJ/fontupd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/fontupd.o -------------------------------------------------------------------------------- /OBJ/ft5206.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ft5206.crf -------------------------------------------------------------------------------- /OBJ/ft5206.d: -------------------------------------------------------------------------------- 1 | ..\obj\ft5206.o: ..\HARDWARE\TOUCH\ft5206.c 2 | ..\obj\ft5206.o: ..\HARDWARE\TOUCH\ft5206.h 3 | ..\obj\ft5206.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\ft5206.o: ..\USER\stm32f10x.h 5 | ..\obj\ft5206.o: ..\CORE\core_cm3.h 6 | ..\obj\ft5206.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\ft5206.o: ..\USER\system_stm32f10x.h 8 | ..\obj\ft5206.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\ft5206.o: ..\USER\stm32f10x.h 11 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\ft5206.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\ft5206.o: ..\HARDWARE\TOUCH\touch.h 23 | ..\obj\ft5206.o: ..\HARDWARE\TOUCH\ott2001a.h 24 | ..\obj\ft5206.o: ..\HARDWARE\TOUCH\gt9147.h 25 | ..\obj\ft5206.o: ..\HARDWARE\TOUCH\ctiic.h 26 | ..\obj\ft5206.o: ..\SYSTEM\usart\usart.h 27 | ..\obj\ft5206.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 28 | ..\obj\ft5206.o: ..\SYSTEM\delay\delay.h 29 | ..\obj\ft5206.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\string.h 30 | -------------------------------------------------------------------------------- /OBJ/ft5206.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ft5206.o -------------------------------------------------------------------------------- /OBJ/gif.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/gif.crf -------------------------------------------------------------------------------- /OBJ/gif.d: -------------------------------------------------------------------------------- 1 | ..\obj\gif.o: ..\PICTURE\gif.c 2 | ..\obj\gif.o: ..\PICTURE\piclib.h 3 | ..\obj\gif.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\gif.o: ..\USER\stm32f10x.h 5 | ..\obj\gif.o: ..\CORE\core_cm3.h 6 | ..\obj\gif.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\gif.o: ..\USER\system_stm32f10x.h 8 | ..\obj\gif.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\gif.o: ..\USER\stm32f10x.h 11 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\gif.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\gif.o: ..\HARDWARE\LCD\lcd.h 23 | ..\obj\gif.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 24 | ..\obj\gif.o: ..\MALLOC\malloc.h 25 | ..\obj\gif.o: ..\FATFS\src\ff.h 26 | ..\obj\gif.o: ..\FATFS\src\integer.h 27 | ..\obj\gif.o: ..\FATFS\src\ffconf.h 28 | ..\obj\gif.o: ..\FATFS\exfuns\exfuns.h 29 | ..\obj\gif.o: ..\PICTURE\bmp.h 30 | ..\obj\gif.o: ..\PICTURE\tjpgd.h 31 | ..\obj\gif.o: ..\PICTURE\integer.h 32 | ..\obj\gif.o: ..\PICTURE\gif.h 33 | ..\obj\gif.o: ..\SYSTEM\delay\delay.h 34 | -------------------------------------------------------------------------------- /OBJ/gif.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/gif.o -------------------------------------------------------------------------------- /OBJ/gt9147.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/gt9147.crf -------------------------------------------------------------------------------- /OBJ/gt9147.d: -------------------------------------------------------------------------------- 1 | ..\obj\gt9147.o: ..\HARDWARE\TOUCH\gt9147.c 2 | ..\obj\gt9147.o: ..\HARDWARE\TOUCH\gt9147.h 3 | ..\obj\gt9147.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\gt9147.o: ..\USER\stm32f10x.h 5 | ..\obj\gt9147.o: ..\CORE\core_cm3.h 6 | ..\obj\gt9147.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\gt9147.o: ..\USER\system_stm32f10x.h 8 | ..\obj\gt9147.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\gt9147.o: ..\USER\stm32f10x.h 11 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\gt9147.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\gt9147.o: ..\HARDWARE\TOUCH\touch.h 23 | ..\obj\gt9147.o: ..\HARDWARE\TOUCH\ott2001a.h 24 | ..\obj\gt9147.o: ..\HARDWARE\TOUCH\ft5206.h 25 | ..\obj\gt9147.o: ..\HARDWARE\TOUCH\ctiic.h 26 | ..\obj\gt9147.o: ..\SYSTEM\usart\usart.h 27 | ..\obj\gt9147.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 28 | ..\obj\gt9147.o: ..\SYSTEM\delay\delay.h 29 | ..\obj\gt9147.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\string.h 30 | ..\obj\gt9147.o: ..\HARDWARE\LCD\lcd.h 31 | ..\obj\gt9147.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 32 | -------------------------------------------------------------------------------- /OBJ/gt9147.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/gt9147.o -------------------------------------------------------------------------------- /OBJ/key.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/key.crf -------------------------------------------------------------------------------- /OBJ/key.d: -------------------------------------------------------------------------------- 1 | ..\obj\key.o: ..\HARDWARE\KEY\key.c 2 | ..\obj\key.o: ..\USER\stm32f10x.h 3 | ..\obj\key.o: ..\CORE\core_cm3.h 4 | ..\obj\key.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 5 | ..\obj\key.o: ..\USER\system_stm32f10x.h 6 | ..\obj\key.o: ..\USER\stm32f10x_conf.h 7 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 8 | ..\obj\key.o: ..\USER\stm32f10x.h 9 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 10 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 11 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 12 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 13 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 14 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 15 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 16 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 17 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 18 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 19 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\misc.h 20 | ..\obj\key.o: ..\HARDWARE\KEY\key.h 21 | ..\obj\key.o: ..\SYSTEM\sys\sys.h 22 | ..\obj\key.o: ..\SYSTEM\delay\delay.h 23 | -------------------------------------------------------------------------------- /OBJ/key.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/key.o -------------------------------------------------------------------------------- /OBJ/lcd.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/lcd.crf -------------------------------------------------------------------------------- /OBJ/lcd.d: -------------------------------------------------------------------------------- 1 | ..\obj\lcd.o: ..\HARDWARE\LCD\lcd.c 2 | ..\obj\lcd.o: ..\HARDWARE\LCD\lcd.h 3 | ..\obj\lcd.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\lcd.o: ..\USER\stm32f10x.h 5 | ..\obj\lcd.o: ..\CORE\core_cm3.h 6 | ..\obj\lcd.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\lcd.o: ..\USER\system_stm32f10x.h 8 | ..\obj\lcd.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\lcd.o: ..\USER\stm32f10x.h 11 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\lcd.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 23 | ..\obj\lcd.o: ..\HARDWARE\LCD\font.h 24 | ..\obj\lcd.o: ..\SYSTEM\usart\usart.h 25 | ..\obj\lcd.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 26 | ..\obj\lcd.o: ..\SYSTEM\delay\delay.h 27 | -------------------------------------------------------------------------------- /OBJ/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/lcd.o -------------------------------------------------------------------------------- /OBJ/led.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/led.crf -------------------------------------------------------------------------------- /OBJ/led.d: -------------------------------------------------------------------------------- 1 | ..\obj\led.o: ..\HARDWARE\LED\led.c 2 | ..\obj\led.o: ..\HARDWARE\LED\led.h 3 | ..\obj\led.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\led.o: ..\USER\stm32f10x.h 5 | ..\obj\led.o: ..\CORE\core_cm3.h 6 | ..\obj\led.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\led.o: ..\USER\system_stm32f10x.h 8 | ..\obj\led.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\led.o: ..\USER\stm32f10x.h 11 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\misc.h 22 | -------------------------------------------------------------------------------- /OBJ/led.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/led.o -------------------------------------------------------------------------------- /OBJ/lsens.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/lsens.crf -------------------------------------------------------------------------------- /OBJ/lsens.d: -------------------------------------------------------------------------------- 1 | ..\obj\lsens.o: ..\HARDWARE\LSENS\lsens.c 2 | ..\obj\lsens.o: ..\HARDWARE\LSENS\lsens.h 3 | ..\obj\lsens.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\lsens.o: ..\USER\stm32f10x.h 5 | ..\obj\lsens.o: ..\CORE\core_cm3.h 6 | ..\obj\lsens.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\lsens.o: ..\USER\system_stm32f10x.h 8 | ..\obj\lsens.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\lsens.o: ..\USER\stm32f10x.h 11 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\lsens.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\lsens.o: ..\HARDWARE\ADC\adc.h 23 | ..\obj\lsens.o: ..\SYSTEM\delay\delay.h 24 | -------------------------------------------------------------------------------- /OBJ/lsens.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/lsens.o -------------------------------------------------------------------------------- /OBJ/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/main.crf -------------------------------------------------------------------------------- /OBJ/main.d: -------------------------------------------------------------------------------- 1 | ..\obj\main.o: main.c 2 | ..\obj\main.o: ..\HARDWARE\LED\led.h 3 | ..\obj\main.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\main.o: ..\USER\stm32f10x.h 5 | ..\obj\main.o: ..\CORE\core_cm3.h 6 | ..\obj\main.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\main.o: ..\USER\system_stm32f10x.h 8 | ..\obj\main.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\main.o: ..\USER\stm32f10x.h 11 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\main.o: ..\SYSTEM\delay\delay.h 23 | ..\obj\main.o: ..\HARDWARE\KEY\key.h 24 | ..\obj\main.o: ..\HARDWARE\LCD\lcd.h 25 | ..\obj\main.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 26 | ..\obj\main.o: ..\SYSTEM\usart\usart.h 27 | ..\obj\main.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 28 | ..\obj\main.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\string.h 29 | ..\obj\main.o: ..\HARDWARE\OV7725\ov7725.h 30 | ..\obj\main.o: ..\HARDWARE\OV7725\sccb.h 31 | ..\obj\main.o: ..\HARDWARE\OV7670\ov7670.h 32 | ..\obj\main.o: ..\HARDWARE\OV7670\sccb.h 33 | ..\obj\main.o: ..\HARDWARE\TPAD\tpad.h 34 | ..\obj\main.o: ..\HARDWARE\TIMER\timer.h 35 | ..\obj\main.o: ..\HARDWARE\EXTI\exti.h 36 | ..\obj\main.o: ..\USMART\usmart.h 37 | ..\obj\main.o: ..\USMART\usmart_str.h 38 | ..\obj\main.o: ..\HARDWARE\SRAM\sram.h 39 | ..\obj\main.o: ..\HARDWARE\BEEP\beep.h 40 | ..\obj\main.o: ..\HARDWARE\ADC\adc.h 41 | ..\obj\main.o: ..\HARDWARE\LSENS\lsens.h 42 | ..\obj\main.o: ..\HARDWARE\STMFLASH\stmflash.h 43 | ..\obj\main.o: ..\HARDWARE\24CXX\24cxx.h 44 | ..\obj\main.o: ..\HARDWARE\IIC\myiic.h 45 | ..\obj\main.o: ..\HARDWARE\W25QXX\w25qxx.h 46 | ..\obj\main.o: ..\HARDWARE\TOUCH\touch.h 47 | ..\obj\main.o: ..\HARDWARE\TOUCH\ott2001a.h 48 | ..\obj\main.o: ..\HARDWARE\TOUCH\gt9147.h 49 | ..\obj\main.o: ..\HARDWARE\TOUCH\ft5206.h 50 | ..\obj\main.o: ..\MALLOC\malloc.h 51 | ..\obj\main.o: ..\HARDWARE\SDIO\sdio_sdcard.h 52 | ..\obj\main.o: ..\FATFS\src\ff.h 53 | ..\obj\main.o: ..\FATFS\src\integer.h 54 | ..\obj\main.o: ..\FATFS\src\ffconf.h 55 | ..\obj\main.o: ..\FATFS\exfuns\exfuns.h 56 | ..\obj\main.o: ..\TEXT\text.h 57 | ..\obj\main.o: ..\TEXT\fontupd.h 58 | ..\obj\main.o: ..\PICTURE\piclib.h 59 | ..\obj\main.o: ..\PICTURE\bmp.h 60 | ..\obj\main.o: ..\PICTURE\tjpgd.h 61 | ..\obj\main.o: ..\PICTURE\integer.h 62 | ..\obj\main.o: ..\PICTURE\gif.h 63 | -------------------------------------------------------------------------------- /OBJ/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/main.o -------------------------------------------------------------------------------- /OBJ/malloc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/malloc.crf -------------------------------------------------------------------------------- /OBJ/malloc.d: -------------------------------------------------------------------------------- 1 | ..\obj\malloc.o: ..\MALLOC\malloc.c 2 | ..\obj\malloc.o: ..\MALLOC\malloc.h 3 | ..\obj\malloc.o: ..\USER\stm32f10x.h 4 | ..\obj\malloc.o: ..\CORE\core_cm3.h 5 | ..\obj\malloc.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\malloc.o: ..\USER\system_stm32f10x.h 7 | ..\obj\malloc.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\malloc.o: ..\USER\stm32f10x.h 10 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\malloc.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/malloc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/malloc.o -------------------------------------------------------------------------------- /OBJ/misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/misc.crf -------------------------------------------------------------------------------- /OBJ/misc.d: -------------------------------------------------------------------------------- 1 | ..\obj\misc.o: ..\STM32F10x_FWLib\src\misc.c 2 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\misc.h 3 | ..\obj\misc.o: ..\USER\stm32f10x.h 4 | ..\obj\misc.o: ..\CORE\core_cm3.h 5 | ..\obj\misc.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\misc.o: ..\USER\system_stm32f10x.h 7 | ..\obj\misc.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\misc.o: ..\USER\stm32f10x.h 10 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/misc.o -------------------------------------------------------------------------------- /OBJ/mycc936.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/mycc936.crf -------------------------------------------------------------------------------- /OBJ/mycc936.d: -------------------------------------------------------------------------------- 1 | ..\obj\mycc936.o: ..\FATFS\exfuns\mycc936.c 2 | ..\obj\mycc936.o: ..\FATFS\src\ff.h 3 | ..\obj\mycc936.o: ..\FATFS\src\integer.h 4 | ..\obj\mycc936.o: ..\FATFS\src\ffconf.h 5 | ..\obj\mycc936.o: ..\TEXT\fontupd.h 6 | ..\obj\mycc936.o: ..\USER\stm32f10x.h 7 | ..\obj\mycc936.o: ..\CORE\core_cm3.h 8 | ..\obj\mycc936.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 9 | ..\obj\mycc936.o: ..\USER\system_stm32f10x.h 10 | ..\obj\mycc936.o: ..\USER\stm32f10x_conf.h 11 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 12 | ..\obj\mycc936.o: ..\USER\stm32f10x.h 13 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 14 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 15 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 16 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 17 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 18 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 19 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 20 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 21 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 22 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 23 | ..\obj\mycc936.o: ..\STM32F10x_FWLib\inc\misc.h 24 | ..\obj\mycc936.o: ..\HARDWARE\W25QXX\w25qxx.h 25 | ..\obj\mycc936.o: ..\SYSTEM\sys\sys.h 26 | -------------------------------------------------------------------------------- /OBJ/mycc936.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/mycc936.o -------------------------------------------------------------------------------- /OBJ/myiic.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/myiic.crf -------------------------------------------------------------------------------- /OBJ/myiic.d: -------------------------------------------------------------------------------- 1 | ..\obj\myiic.o: ..\HARDWARE\IIC\myiic.c 2 | ..\obj\myiic.o: ..\HARDWARE\IIC\myiic.h 3 | ..\obj\myiic.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\myiic.o: ..\USER\stm32f10x.h 5 | ..\obj\myiic.o: ..\CORE\core_cm3.h 6 | ..\obj\myiic.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\myiic.o: ..\USER\system_stm32f10x.h 8 | ..\obj\myiic.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\myiic.o: ..\USER\stm32f10x.h 11 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\myiic.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\myiic.o: ..\SYSTEM\delay\delay.h 23 | -------------------------------------------------------------------------------- /OBJ/myiic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/myiic.o -------------------------------------------------------------------------------- /OBJ/ott2001a.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ott2001a.crf -------------------------------------------------------------------------------- /OBJ/ott2001a.d: -------------------------------------------------------------------------------- 1 | ..\obj\ott2001a.o: ..\HARDWARE\TOUCH\ott2001a.c 2 | ..\obj\ott2001a.o: ..\HARDWARE\TOUCH\ott2001a.h 3 | ..\obj\ott2001a.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\ott2001a.o: ..\USER\stm32f10x.h 5 | ..\obj\ott2001a.o: ..\CORE\core_cm3.h 6 | ..\obj\ott2001a.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\ott2001a.o: ..\USER\system_stm32f10x.h 8 | ..\obj\ott2001a.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\ott2001a.o: ..\USER\stm32f10x.h 11 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\ott2001a.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\ott2001a.o: ..\HARDWARE\TOUCH\touch.h 23 | ..\obj\ott2001a.o: ..\HARDWARE\TOUCH\gt9147.h 24 | ..\obj\ott2001a.o: ..\HARDWARE\TOUCH\ft5206.h 25 | ..\obj\ott2001a.o: ..\HARDWARE\TOUCH\ctiic.h 26 | ..\obj\ott2001a.o: ..\SYSTEM\usart\usart.h 27 | ..\obj\ott2001a.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 28 | ..\obj\ott2001a.o: ..\SYSTEM\delay\delay.h 29 | -------------------------------------------------------------------------------- /OBJ/ott2001a.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ott2001a.o -------------------------------------------------------------------------------- /OBJ/ov7670.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ov7670.crf -------------------------------------------------------------------------------- /OBJ/ov7670.d: -------------------------------------------------------------------------------- 1 | ..\obj\ov7670.o: ..\HARDWARE\OV7670\ov7670.c 2 | ..\obj\ov7670.o: ..\SYSTEM\sys\sys.h 3 | ..\obj\ov7670.o: ..\USER\stm32f10x.h 4 | ..\obj\ov7670.o: ..\CORE\core_cm3.h 5 | ..\obj\ov7670.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\ov7670.o: ..\USER\system_stm32f10x.h 7 | ..\obj\ov7670.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\ov7670.o: ..\USER\stm32f10x.h 10 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\ov7670.o: ..\STM32F10x_FWLib\inc\misc.h 21 | ..\obj\ov7670.o: ..\HARDWARE\OV7670\ov7670.h 22 | ..\obj\ov7670.o: ..\HARDWARE\OV7670\sccb.h 23 | ..\obj\ov7670.o: ..\HARDWARE\OV7670\ov7670cfg.h 24 | ..\obj\ov7670.o: ..\HARDWARE\TIMER\timer.h 25 | ..\obj\ov7670.o: ..\SYSTEM\delay\delay.h 26 | ..\obj\ov7670.o: ..\SYSTEM\usart\usart.h 27 | ..\obj\ov7670.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 28 | ..\obj\ov7670.o: ..\HARDWARE\EXTI\exti.h 29 | -------------------------------------------------------------------------------- /OBJ/ov7670.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ov7670.o -------------------------------------------------------------------------------- /OBJ/ov7725.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ov7725.crf -------------------------------------------------------------------------------- /OBJ/ov7725.d: -------------------------------------------------------------------------------- 1 | ..\obj\ov7725.o: ..\HARDWARE\OV7725\ov7725.c 2 | ..\obj\ov7725.o: ..\SYSTEM\sys\sys.h 3 | ..\obj\ov7725.o: ..\USER\stm32f10x.h 4 | ..\obj\ov7725.o: ..\CORE\core_cm3.h 5 | ..\obj\ov7725.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\ov7725.o: ..\USER\system_stm32f10x.h 7 | ..\obj\ov7725.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\ov7725.o: ..\USER\stm32f10x.h 10 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\ov7725.o: ..\STM32F10x_FWLib\inc\misc.h 21 | ..\obj\ov7725.o: ..\HARDWARE\OV7725\ov7725.h 22 | ..\obj\ov7725.o: ..\HARDWARE\OV7725\sccb.h 23 | ..\obj\ov7725.o: ..\HARDWARE\OV7725\ov7725config.h 24 | ..\obj\ov7725.o: ..\SYSTEM\delay\delay.h 25 | ..\obj\ov7725.o: ..\SYSTEM\usart\usart.h 26 | ..\obj\ov7725.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 27 | -------------------------------------------------------------------------------- /OBJ/ov7725.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/ov7725.o -------------------------------------------------------------------------------- /OBJ/piclib.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/piclib.crf -------------------------------------------------------------------------------- /OBJ/piclib.d: -------------------------------------------------------------------------------- 1 | ..\obj\piclib.o: ..\PICTURE\piclib.c 2 | ..\obj\piclib.o: ..\PICTURE\piclib.h 3 | ..\obj\piclib.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\piclib.o: ..\USER\stm32f10x.h 5 | ..\obj\piclib.o: ..\CORE\core_cm3.h 6 | ..\obj\piclib.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\piclib.o: ..\USER\system_stm32f10x.h 8 | ..\obj\piclib.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\piclib.o: ..\USER\stm32f10x.h 11 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\piclib.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\piclib.o: ..\HARDWARE\LCD\lcd.h 23 | ..\obj\piclib.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 24 | ..\obj\piclib.o: ..\MALLOC\malloc.h 25 | ..\obj\piclib.o: ..\FATFS\src\ff.h 26 | ..\obj\piclib.o: ..\FATFS\src\integer.h 27 | ..\obj\piclib.o: ..\FATFS\src\ffconf.h 28 | ..\obj\piclib.o: ..\FATFS\exfuns\exfuns.h 29 | ..\obj\piclib.o: ..\PICTURE\bmp.h 30 | ..\obj\piclib.o: ..\PICTURE\tjpgd.h 31 | ..\obj\piclib.o: ..\PICTURE\integer.h 32 | ..\obj\piclib.o: ..\PICTURE\gif.h 33 | -------------------------------------------------------------------------------- /OBJ/piclib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/piclib.o -------------------------------------------------------------------------------- /OBJ/sccb.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/sccb.crf -------------------------------------------------------------------------------- /OBJ/sccb.d: -------------------------------------------------------------------------------- 1 | ..\obj\sccb.o: ..\HARDWARE\OV7670\sccb.c 2 | ..\obj\sccb.o: ..\SYSTEM\sys\sys.h 3 | ..\obj\sccb.o: ..\USER\stm32f10x.h 4 | ..\obj\sccb.o: ..\CORE\core_cm3.h 5 | ..\obj\sccb.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\sccb.o: ..\USER\system_stm32f10x.h 7 | ..\obj\sccb.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\sccb.o: ..\USER\stm32f10x.h 10 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\sccb.o: ..\STM32F10x_FWLib\inc\misc.h 21 | ..\obj\sccb.o: ..\HARDWARE\OV7670\sccb.h 22 | ..\obj\sccb.o: ..\SYSTEM\delay\delay.h 23 | -------------------------------------------------------------------------------- /OBJ/sccb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/sccb.o -------------------------------------------------------------------------------- /OBJ/sdio_sdcard.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/sdio_sdcard.crf -------------------------------------------------------------------------------- /OBJ/sdio_sdcard.d: -------------------------------------------------------------------------------- 1 | ..\obj\sdio_sdcard.o: ..\HARDWARE\SDIO\sdio_sdcard.c 2 | ..\obj\sdio_sdcard.o: ..\HARDWARE\SDIO\sdio_sdcard.h 3 | ..\obj\sdio_sdcard.o: ..\USER\stm32f10x.h 4 | ..\obj\sdio_sdcard.o: ..\CORE\core_cm3.h 5 | ..\obj\sdio_sdcard.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\sdio_sdcard.o: ..\USER\system_stm32f10x.h 7 | ..\obj\sdio_sdcard.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\sdio_sdcard.o: ..\USER\stm32f10x.h 10 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\sdio_sdcard.o: ..\STM32F10x_FWLib\inc\misc.h 21 | ..\obj\sdio_sdcard.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\string.h 22 | ..\obj\sdio_sdcard.o: ..\SYSTEM\sys\sys.h 23 | ..\obj\sdio_sdcard.o: ..\SYSTEM\usart\usart.h 24 | ..\obj\sdio_sdcard.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 25 | -------------------------------------------------------------------------------- /OBJ/sdio_sdcard.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/sdio_sdcard.o -------------------------------------------------------------------------------- /OBJ/spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/spi.crf -------------------------------------------------------------------------------- /OBJ/spi.d: -------------------------------------------------------------------------------- 1 | ..\obj\spi.o: ..\HARDWARE\SPI\spi.c 2 | ..\obj\spi.o: ..\HARDWARE\SPI\spi.h 3 | ..\obj\spi.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\spi.o: ..\USER\stm32f10x.h 5 | ..\obj\spi.o: ..\CORE\core_cm3.h 6 | ..\obj\spi.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\spi.o: ..\USER\system_stm32f10x.h 8 | ..\obj\spi.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\spi.o: ..\USER\stm32f10x.h 11 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\spi.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\spi.o: ..\SYSTEM\usart\usart.h 23 | ..\obj\spi.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 24 | -------------------------------------------------------------------------------- /OBJ/spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/spi.o -------------------------------------------------------------------------------- /OBJ/sram.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/sram.crf -------------------------------------------------------------------------------- /OBJ/sram.d: -------------------------------------------------------------------------------- 1 | ..\obj\sram.o: ..\HARDWARE\SRAM\sram.c 2 | ..\obj\sram.o: ..\HARDWARE\SRAM\sram.h 3 | ..\obj\sram.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\sram.o: ..\USER\stm32f10x.h 5 | ..\obj\sram.o: ..\CORE\core_cm3.h 6 | ..\obj\sram.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\sram.o: ..\USER\system_stm32f10x.h 8 | ..\obj\sram.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\sram.o: ..\USER\stm32f10x.h 11 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\sram.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\sram.o: ..\SYSTEM\usart\usart.h 23 | ..\obj\sram.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 24 | -------------------------------------------------------------------------------- /OBJ/sram.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/sram.o -------------------------------------------------------------------------------- /OBJ/startup_stm32f10x_hd.d: -------------------------------------------------------------------------------- 1 | ..\obj\startup_stm32f10x_hd.o: ..\CORE\startup_stm32f10x_hd.s 2 | -------------------------------------------------------------------------------- /OBJ/startup_stm32f10x_hd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/startup_stm32f10x_hd.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_adc.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_adc.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\src\stm32f10x_adc.c 2 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 3 | ..\obj\stm32f10x_adc.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_adc.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_adc.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_adc.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_adc.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 10 | ..\obj\stm32f10x_adc.o: ..\USER\stm32f10x.h 11 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_adc.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_dma.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_dma.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\src\stm32f10x_dma.c 2 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 3 | ..\obj\stm32f10x_dma.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_dma.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_dma.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_dma.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_dma.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_dma.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_dma.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_dma.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_exti.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_exti.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_exti.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\src\stm32f10x_exti.c 2 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 3 | ..\obj\stm32f10x_exti.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_exti.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_exti.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_exti.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_exti.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_exti.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_exti.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_exti.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_flash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_flash.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_flash.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\src\stm32f10x_flash.c 2 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 3 | ..\obj\stm32f10x_flash.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_flash.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_flash.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_flash.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_flash.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_flash.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_flash.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_flash.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_fsmc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_fsmc.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_fsmc.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\src\stm32f10x_fsmc.c 2 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 3 | ..\obj\stm32f10x_fsmc.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_fsmc.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_fsmc.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_fsmc.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_fsmc.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_fsmc.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_fsmc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_fsmc.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_gpio.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_gpio.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\src\stm32f10x_gpio.c 2 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 3 | ..\obj\stm32f10x_gpio.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_gpio.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_gpio.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_gpio.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_gpio.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_gpio.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_gpio.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_it.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_it.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_it.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_it.o: stm32f10x_it.c 2 | ..\obj\stm32f10x_it.o: stm32f10x_it.h 3 | ..\obj\stm32f10x_it.o: stm32f10x.h 4 | ..\obj\stm32f10x_it.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_it.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_it.o: system_stm32f10x.h 7 | ..\obj\stm32f10x_it.o: stm32f10x_conf.h 8 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_it.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_it.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_rcc.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_rcc.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\src\stm32f10x_rcc.c 2 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 3 | ..\obj\stm32f10x_rcc.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_rcc.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_rcc.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_rcc.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_rcc.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_rcc.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_rcc.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_sdio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_sdio.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_sdio.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\src\stm32f10x_sdio.c 2 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 3 | ..\obj\stm32f10x_sdio.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_sdio.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_sdio.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_sdio.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_sdio.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_sdio.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_sdio.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_sdio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_sdio.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_spi.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_spi.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\src\stm32f10x_spi.c 2 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 3 | ..\obj\stm32f10x_spi.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_spi.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_spi.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_spi.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_spi.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_spi.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_spi.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_spi.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_tim.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_tim.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\src\stm32f10x_tim.c 2 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 3 | ..\obj\stm32f10x_tim.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_tim.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_tim.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_tim.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_tim.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_tim.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_tim.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_usart.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_usart.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\src\stm32f10x_usart.c 2 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 3 | ..\obj\stm32f10x_usart.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_usart.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_usart.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_usart.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_usart.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_usart.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stm32f10x_usart.o -------------------------------------------------------------------------------- /OBJ/stmflash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stmflash.crf -------------------------------------------------------------------------------- /OBJ/stmflash.d: -------------------------------------------------------------------------------- 1 | ..\obj\stmflash.o: ..\HARDWARE\STMFLASH\stmflash.c 2 | ..\obj\stmflash.o: ..\HARDWARE\STMFLASH\stmflash.h 3 | ..\obj\stmflash.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\stmflash.o: ..\USER\stm32f10x.h 5 | ..\obj\stmflash.o: ..\CORE\core_cm3.h 6 | ..\obj\stmflash.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\stmflash.o: ..\USER\system_stm32f10x.h 8 | ..\obj\stmflash.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\stmflash.o: ..\USER\stm32f10x.h 11 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\stmflash.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\stmflash.o: ..\SYSTEM\delay\delay.h 23 | ..\obj\stmflash.o: ..\SYSTEM\usart\usart.h 24 | ..\obj\stmflash.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 25 | -------------------------------------------------------------------------------- /OBJ/stmflash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/stmflash.o -------------------------------------------------------------------------------- /OBJ/sys.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/sys.crf -------------------------------------------------------------------------------- /OBJ/sys.d: -------------------------------------------------------------------------------- 1 | ..\obj\sys.o: ..\SYSTEM\sys\sys.c 2 | ..\obj\sys.o: ..\SYSTEM\sys\sys.h 3 | ..\obj\sys.o: ..\USER\stm32f10x.h 4 | ..\obj\sys.o: ..\CORE\core_cm3.h 5 | ..\obj\sys.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\sys.o: ..\USER\system_stm32f10x.h 7 | ..\obj\sys.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\sys.o: ..\USER\stm32f10x.h 10 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\misc.h 21 | -------------------------------------------------------------------------------- /OBJ/sys.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/sys.o -------------------------------------------------------------------------------- /OBJ/system_stm32f10x.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/system_stm32f10x.crf -------------------------------------------------------------------------------- /OBJ/system_stm32f10x.d: -------------------------------------------------------------------------------- 1 | ..\obj\system_stm32f10x.o: system_stm32f10x.c 2 | ..\obj\system_stm32f10x.o: stm32f10x.h 3 | ..\obj\system_stm32f10x.o: ..\CORE\core_cm3.h 4 | ..\obj\system_stm32f10x.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 5 | ..\obj\system_stm32f10x.o: system_stm32f10x.h 6 | ..\obj\system_stm32f10x.o: stm32f10x_conf.h 7 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 8 | ..\obj\system_stm32f10x.o: ..\USER\stm32f10x.h 9 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 10 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 11 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 12 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 13 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 14 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 15 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 16 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 17 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 18 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 19 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\misc.h 20 | -------------------------------------------------------------------------------- /OBJ/system_stm32f10x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/system_stm32f10x.o -------------------------------------------------------------------------------- /OBJ/text.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/text.crf -------------------------------------------------------------------------------- /OBJ/text.d: -------------------------------------------------------------------------------- 1 | ..\obj\text.o: ..\TEXT\text.c 2 | ..\obj\text.o: ..\SYSTEM\sys\sys.h 3 | ..\obj\text.o: ..\USER\stm32f10x.h 4 | ..\obj\text.o: ..\CORE\core_cm3.h 5 | ..\obj\text.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\text.o: ..\USER\system_stm32f10x.h 7 | ..\obj\text.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\text.o: ..\USER\stm32f10x.h 10 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\misc.h 21 | ..\obj\text.o: ..\TEXT\fontupd.h 22 | ..\obj\text.o: ..\HARDWARE\W25QXX\w25qxx.h 23 | ..\obj\text.o: ..\HARDWARE\LCD\lcd.h 24 | ..\obj\text.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 25 | ..\obj\text.o: ..\TEXT\text.h 26 | ..\obj\text.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\string.h 27 | ..\obj\text.o: ..\SYSTEM\usart\usart.h 28 | ..\obj\text.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 29 | -------------------------------------------------------------------------------- /OBJ/text.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/text.o -------------------------------------------------------------------------------- /OBJ/timer.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/timer.crf -------------------------------------------------------------------------------- /OBJ/timer.d: -------------------------------------------------------------------------------- 1 | ..\obj\timer.o: ..\HARDWARE\TIMER\timer.c 2 | ..\obj\timer.o: ..\HARDWARE\TIMER\timer.h 3 | ..\obj\timer.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\timer.o: ..\USER\stm32f10x.h 5 | ..\obj\timer.o: ..\CORE\core_cm3.h 6 | ..\obj\timer.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\timer.o: ..\USER\system_stm32f10x.h 8 | ..\obj\timer.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\timer.o: ..\USER\stm32f10x.h 11 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\timer.o: ..\HARDWARE\LED\led.h 23 | ..\obj\timer.o: ..\SYSTEM\usart\usart.h 24 | ..\obj\timer.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 25 | -------------------------------------------------------------------------------- /OBJ/timer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/timer.o -------------------------------------------------------------------------------- /OBJ/tjpgd.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/tjpgd.crf -------------------------------------------------------------------------------- /OBJ/tjpgd.d: -------------------------------------------------------------------------------- 1 | ..\obj\tjpgd.o: ..\PICTURE\tjpgd.c 2 | ..\obj\tjpgd.o: ..\PICTURE\tjpgd.h 3 | ..\obj\tjpgd.o: ..\PICTURE\integer.h 4 | ..\obj\tjpgd.o: ..\SYSTEM\sys\sys.h 5 | ..\obj\tjpgd.o: ..\USER\stm32f10x.h 6 | ..\obj\tjpgd.o: ..\CORE\core_cm3.h 7 | ..\obj\tjpgd.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 8 | ..\obj\tjpgd.o: ..\USER\system_stm32f10x.h 9 | ..\obj\tjpgd.o: ..\USER\stm32f10x_conf.h 10 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 11 | ..\obj\tjpgd.o: ..\USER\stm32f10x.h 12 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 13 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 14 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 15 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 16 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 17 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 18 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 19 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 20 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 21 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 22 | ..\obj\tjpgd.o: ..\STM32F10x_FWLib\inc\misc.h 23 | ..\obj\tjpgd.o: ..\PICTURE\piclib.h 24 | ..\obj\tjpgd.o: ..\HARDWARE\LCD\lcd.h 25 | ..\obj\tjpgd.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 26 | ..\obj\tjpgd.o: ..\MALLOC\malloc.h 27 | ..\obj\tjpgd.o: ..\FATFS\src\ff.h 28 | ..\obj\tjpgd.o: ..\FATFS\src\integer.h 29 | ..\obj\tjpgd.o: ..\FATFS\src\ffconf.h 30 | ..\obj\tjpgd.o: ..\FATFS\exfuns\exfuns.h 31 | ..\obj\tjpgd.o: ..\PICTURE\bmp.h 32 | ..\obj\tjpgd.o: ..\PICTURE\gif.h 33 | -------------------------------------------------------------------------------- /OBJ/tjpgd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/tjpgd.o -------------------------------------------------------------------------------- /OBJ/touch.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/touch.crf -------------------------------------------------------------------------------- /OBJ/touch.d: -------------------------------------------------------------------------------- 1 | ..\obj\touch.o: ..\HARDWARE\TOUCH\touch.c 2 | ..\obj\touch.o: ..\HARDWARE\TOUCH\touch.h 3 | ..\obj\touch.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\touch.o: ..\USER\stm32f10x.h 5 | ..\obj\touch.o: ..\CORE\core_cm3.h 6 | ..\obj\touch.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\touch.o: ..\USER\system_stm32f10x.h 8 | ..\obj\touch.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\touch.o: ..\USER\stm32f10x.h 11 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\touch.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\touch.o: ..\HARDWARE\TOUCH\ott2001a.h 23 | ..\obj\touch.o: ..\HARDWARE\TOUCH\gt9147.h 24 | ..\obj\touch.o: ..\HARDWARE\TOUCH\ft5206.h 25 | ..\obj\touch.o: ..\HARDWARE\LCD\lcd.h 26 | ..\obj\touch.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 27 | ..\obj\touch.o: ..\SYSTEM\delay\delay.h 28 | ..\obj\touch.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\math.h 29 | ..\obj\touch.o: ..\HARDWARE\24CXX\24cxx.h 30 | ..\obj\touch.o: ..\HARDWARE\IIC\myiic.h 31 | -------------------------------------------------------------------------------- /OBJ/touch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/touch.o -------------------------------------------------------------------------------- /OBJ/tpad.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/tpad.crf -------------------------------------------------------------------------------- /OBJ/tpad.d: -------------------------------------------------------------------------------- 1 | ..\obj\tpad.o: ..\HARDWARE\TPAD\tpad.c 2 | ..\obj\tpad.o: ..\HARDWARE\TPAD\tpad.h 3 | ..\obj\tpad.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\tpad.o: ..\USER\stm32f10x.h 5 | ..\obj\tpad.o: ..\CORE\core_cm3.h 6 | ..\obj\tpad.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\tpad.o: ..\USER\system_stm32f10x.h 8 | ..\obj\tpad.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\tpad.o: ..\USER\stm32f10x.h 11 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\tpad.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\tpad.o: ..\SYSTEM\delay\delay.h 23 | ..\obj\tpad.o: ..\SYSTEM\usart\usart.h 24 | ..\obj\tpad.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 25 | -------------------------------------------------------------------------------- /OBJ/tpad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/tpad.o -------------------------------------------------------------------------------- /OBJ/tsensor.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/tsensor.crf -------------------------------------------------------------------------------- /OBJ/tsensor.d: -------------------------------------------------------------------------------- 1 | ..\obj\tsensor.o: ..\HARDWARE\ITEMP\tsensor.c 2 | ..\obj\tsensor.o: ..\HARDWARE\ITEMP\tsensor.h 3 | ..\obj\tsensor.o: ..\USER\stm32f10x.h 4 | ..\obj\tsensor.o: ..\CORE\core_cm3.h 5 | ..\obj\tsensor.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\tsensor.o: ..\USER\system_stm32f10x.h 7 | ..\obj\tsensor.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\tsensor.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\tsensor.o: ..\USER\stm32f10x.h 10 | ..\obj\tsensor.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 11 | ..\obj\tsensor.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 12 | ..\obj\tsensor.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 13 | ..\obj\tsensor.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 14 | ..\obj\tsensor.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 15 | ..\obj\tsensor.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 16 | ..\obj\tsensor.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 17 | ..\obj\tsensor.o: ..\STM32F10x_FWLib\inc\misc.h 18 | ..\obj\tsensor.o: ..\SYSTEM\delay\delay.h 19 | ..\obj\tsensor.o: ..\SYSTEM\sys\sys.h 20 | -------------------------------------------------------------------------------- /OBJ/tsensor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/tsensor.o -------------------------------------------------------------------------------- /OBJ/usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/usart.crf -------------------------------------------------------------------------------- /OBJ/usart.d: -------------------------------------------------------------------------------- 1 | ..\obj\usart.o: ..\SYSTEM\usart\usart.c 2 | ..\obj\usart.o: ..\SYSTEM\sys\sys.h 3 | ..\obj\usart.o: ..\USER\stm32f10x.h 4 | ..\obj\usart.o: ..\CORE\core_cm3.h 5 | ..\obj\usart.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\usart.o: ..\USER\system_stm32f10x.h 7 | ..\obj\usart.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\usart.o: ..\USER\stm32f10x.h 10 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\misc.h 21 | ..\obj\usart.o: ..\SYSTEM\usart\usart.h 22 | ..\obj\usart.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 23 | -------------------------------------------------------------------------------- /OBJ/usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/usart.o -------------------------------------------------------------------------------- /OBJ/usmart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/usmart.crf -------------------------------------------------------------------------------- /OBJ/usmart.d: -------------------------------------------------------------------------------- 1 | ..\obj\usmart.o: ..\USMART\usmart.c 2 | ..\obj\usmart.o: ..\USMART\usmart.h 3 | ..\obj\usmart.o: ..\USMART\usmart_str.h 4 | ..\obj\usmart.o: ..\USER\stm32f10x.h 5 | ..\obj\usmart.o: ..\CORE\core_cm3.h 6 | ..\obj\usmart.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\usmart.o: ..\USER\system_stm32f10x.h 8 | ..\obj\usmart.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\usmart.o: ..\USER\stm32f10x.h 11 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\usmart.o: ..\SYSTEM\usart\usart.h 23 | ..\obj\usmart.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 24 | ..\obj\usmart.o: ..\SYSTEM\sys\sys.h 25 | -------------------------------------------------------------------------------- /OBJ/usmart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/usmart.o -------------------------------------------------------------------------------- /OBJ/usmart_config.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/usmart_config.crf -------------------------------------------------------------------------------- /OBJ/usmart_config.d: -------------------------------------------------------------------------------- 1 | ..\obj\usmart_config.o: ..\USMART\usmart_config.c 2 | ..\obj\usmart_config.o: ..\USMART\usmart.h 3 | ..\obj\usmart_config.o: ..\USMART\usmart_str.h 4 | ..\obj\usmart_config.o: ..\USER\stm32f10x.h 5 | ..\obj\usmart_config.o: ..\CORE\core_cm3.h 6 | ..\obj\usmart_config.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\usmart_config.o: ..\USER\system_stm32f10x.h 8 | ..\obj\usmart_config.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\usmart_config.o: ..\USER\stm32f10x.h 11 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\usmart_config.o: ..\SYSTEM\delay\delay.h 23 | ..\obj\usmart_config.o: ..\SYSTEM\sys\sys.h 24 | ..\obj\usmart_config.o: ..\SYSTEM\usart\usart.h 25 | ..\obj\usmart_config.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 26 | ..\obj\usmart_config.o: ..\HARDWARE\LCD\lcd.h 27 | ..\obj\usmart_config.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h 28 | ..\obj\usmart_config.o: ..\HARDWARE\OV7670\ov7670.h 29 | ..\obj\usmart_config.o: ..\HARDWARE\OV7670\sccb.h 30 | ..\obj\usmart_config.o: ..\HARDWARE\OV7725\ov7725.h 31 | ..\obj\usmart_config.o: ..\HARDWARE\OV7725\sccb.h 32 | -------------------------------------------------------------------------------- /OBJ/usmart_config.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/usmart_config.o -------------------------------------------------------------------------------- /OBJ/usmart_str.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/usmart_str.crf -------------------------------------------------------------------------------- /OBJ/usmart_str.d: -------------------------------------------------------------------------------- 1 | ..\obj\usmart_str.o: ..\USMART\usmart_str.c 2 | ..\obj\usmart_str.o: ..\USMART\usmart_str.h 3 | ..\obj\usmart_str.o: ..\USER\stm32f10x.h 4 | ..\obj\usmart_str.o: ..\CORE\core_cm3.h 5 | ..\obj\usmart_str.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\usmart_str.o: ..\USER\system_stm32f10x.h 7 | ..\obj\usmart_str.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\usmart_str.o: ..\USER\stm32f10x.h 10 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 11 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 12 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 13 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 14 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 15 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 16 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 17 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 18 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 19 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 20 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\misc.h 21 | ..\obj\usmart_str.o: ..\USMART\usmart.h 22 | -------------------------------------------------------------------------------- /OBJ/usmart_str.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/usmart_str.o -------------------------------------------------------------------------------- /OBJ/w25qxx.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/w25qxx.crf -------------------------------------------------------------------------------- /OBJ/w25qxx.d: -------------------------------------------------------------------------------- 1 | ..\obj\w25qxx.o: ..\HARDWARE\W25QXX\w25qxx.c 2 | ..\obj\w25qxx.o: ..\HARDWARE\W25QXX\w25qxx.h 3 | ..\obj\w25qxx.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\w25qxx.o: ..\USER\stm32f10x.h 5 | ..\obj\w25qxx.o: ..\CORE\core_cm3.h 6 | ..\obj\w25qxx.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\w25qxx.o: ..\USER\system_stm32f10x.h 8 | ..\obj\w25qxx.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\w25qxx.o: ..\USER\stm32f10x.h 11 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 12 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 13 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 14 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 15 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 16 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 17 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 18 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 19 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 20 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 21 | ..\obj\w25qxx.o: ..\STM32F10x_FWLib\inc\misc.h 22 | ..\obj\w25qxx.o: ..\HARDWARE\SPI\spi.h 23 | ..\obj\w25qxx.o: ..\SYSTEM\delay\delay.h 24 | ..\obj\w25qxx.o: ..\SYSTEM\usart\usart.h 25 | ..\obj\w25qxx.o: F:\PROGRAM FILES (X86)\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h 26 | -------------------------------------------------------------------------------- /OBJ/w25qxx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/OBJ/w25qxx.o -------------------------------------------------------------------------------- /PICTURE/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/PICTURE/bmp.c -------------------------------------------------------------------------------- /PICTURE/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/PICTURE/bmp.h -------------------------------------------------------------------------------- /PICTURE/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/PICTURE/gif.c -------------------------------------------------------------------------------- /PICTURE/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/PICTURE/gif.h -------------------------------------------------------------------------------- /PICTURE/integer.h: -------------------------------------------------------------------------------- 1 | /*-------------------------------------------*/ 2 | /* Integer type definitions for FatFs module */ 3 | /*-------------------------------------------*/ 4 | 5 | #ifndef _INTEGER 6 | #define _INTEGER 7 | 8 | #ifdef _WIN32 /* FatFs development platform */ 9 | 10 | #include 11 | #include 12 | 13 | #else /* Embedded platform */ 14 | 15 | /* These types must be 16-bit, 32-bit or larger integer */ 16 | typedef int INT; 17 | typedef unsigned int UINT; 18 | 19 | /* These types must be 8-bit integer */ 20 | typedef char CHAR; 21 | typedef unsigned char UCHAR; 22 | typedef unsigned char BYTE; 23 | 24 | /* These types must be 16-bit integer */ 25 | typedef short SHORT; 26 | typedef unsigned short USHORT; 27 | typedef unsigned short WORD; 28 | typedef unsigned short WCHAR; 29 | 30 | /* These types must be 32-bit integer */ 31 | typedef long LONG; 32 | typedef unsigned long ULONG; 33 | typedef unsigned long DWORD; 34 | 35 | #endif 36 | 37 | #endif 38 | -------------------------------------------------------------------------------- /PICTURE/piclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/PICTURE/piclib.c -------------------------------------------------------------------------------- /PICTURE/piclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/PICTURE/piclib.h -------------------------------------------------------------------------------- /PICTURE/tjpgd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/PICTURE/tjpgd.c -------------------------------------------------------------------------------- /PICTURE/tjpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/PICTURE/tjpgd.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_crc.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the CRC firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_CRC_H 25 | #define __STM32F10x_CRC_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup CRC 39 | * @{ 40 | */ 41 | 42 | /** @defgroup CRC_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup CRC_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** 55 | * @} 56 | */ 57 | 58 | /** @defgroup CRC_Exported_Macros 59 | * @{ 60 | */ 61 | 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup CRC_Exported_Functions 67 | * @{ 68 | */ 69 | 70 | void CRC_ResetDR(void); 71 | uint32_t CRC_CalcCRC(uint32_t Data); 72 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength); 73 | uint32_t CRC_GetCRC(void); 74 | void CRC_SetIDRegister(uint8_t IDValue); 75 | uint8_t CRC_GetIDRegister(void); 76 | 77 | #ifdef __cplusplus 78 | } 79 | #endif 80 | 81 | #endif /* __STM32F10x_CRC_H */ 82 | /** 83 | * @} 84 | */ 85 | 86 | /** 87 | * @} 88 | */ 89 | 90 | /** 91 | * @} 92 | */ 93 | 94 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 95 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_dbgmcu.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the DBGMCU 8 | * firmware library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_DBGMCU_H 25 | #define __STM32F10x_DBGMCU_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup DBGMCU 39 | * @{ 40 | */ 41 | 42 | /** @defgroup DBGMCU_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup DBGMCU_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | #define DBGMCU_SLEEP ((uint32_t)0x00000001) 55 | #define DBGMCU_STOP ((uint32_t)0x00000002) 56 | #define DBGMCU_STANDBY ((uint32_t)0x00000004) 57 | #define DBGMCU_IWDG_STOP ((uint32_t)0x00000100) 58 | #define DBGMCU_WWDG_STOP ((uint32_t)0x00000200) 59 | #define DBGMCU_TIM1_STOP ((uint32_t)0x00000400) 60 | #define DBGMCU_TIM2_STOP ((uint32_t)0x00000800) 61 | #define DBGMCU_TIM3_STOP ((uint32_t)0x00001000) 62 | #define DBGMCU_TIM4_STOP ((uint32_t)0x00002000) 63 | #define DBGMCU_CAN1_STOP ((uint32_t)0x00004000) 64 | #define DBGMCU_I2C1_SMBUS_TIMEOUT ((uint32_t)0x00008000) 65 | #define DBGMCU_I2C2_SMBUS_TIMEOUT ((uint32_t)0x00010000) 66 | #define DBGMCU_TIM8_STOP ((uint32_t)0x00020000) 67 | #define DBGMCU_TIM5_STOP ((uint32_t)0x00040000) 68 | #define DBGMCU_TIM6_STOP ((uint32_t)0x00080000) 69 | #define DBGMCU_TIM7_STOP ((uint32_t)0x00100000) 70 | #define DBGMCU_CAN2_STOP ((uint32_t)0x00200000) 71 | #define DBGMCU_TIM15_STOP ((uint32_t)0x00400000) 72 | #define DBGMCU_TIM16_STOP ((uint32_t)0x00800000) 73 | #define DBGMCU_TIM17_STOP ((uint32_t)0x01000000) 74 | #define DBGMCU_TIM12_STOP ((uint32_t)0x02000000) 75 | #define DBGMCU_TIM13_STOP ((uint32_t)0x04000000) 76 | #define DBGMCU_TIM14_STOP ((uint32_t)0x08000000) 77 | #define DBGMCU_TIM9_STOP ((uint32_t)0x10000000) 78 | #define DBGMCU_TIM10_STOP ((uint32_t)0x20000000) 79 | #define DBGMCU_TIM11_STOP ((uint32_t)0x40000000) 80 | 81 | #define IS_DBGMCU_PERIPH(PERIPH) ((((PERIPH) & 0x800000F8) == 0x00) && ((PERIPH) != 0x00)) 82 | /** 83 | * @} 84 | */ 85 | 86 | /** @defgroup DBGMCU_Exported_Macros 87 | * @{ 88 | */ 89 | 90 | /** 91 | * @} 92 | */ 93 | 94 | /** @defgroup DBGMCU_Exported_Functions 95 | * @{ 96 | */ 97 | 98 | uint32_t DBGMCU_GetREVID(void); 99 | uint32_t DBGMCU_GetDEVID(void); 100 | void DBGMCU_Config(uint32_t DBGMCU_Periph, FunctionalState NewState); 101 | 102 | #ifdef __cplusplus 103 | } 104 | #endif 105 | 106 | #endif /* __STM32F10x_DBGMCU_H */ 107 | /** 108 | * @} 109 | */ 110 | 111 | /** 112 | * @} 113 | */ 114 | 115 | /** 116 | * @} 117 | */ 118 | 119 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 120 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_iwdg.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the IWDG 8 | * firmware library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_IWDG_H 25 | #define __STM32F10x_IWDG_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup IWDG 39 | * @{ 40 | */ 41 | 42 | /** @defgroup IWDG_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup IWDG_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup IWDG_WriteAccess 55 | * @{ 56 | */ 57 | 58 | #define IWDG_WriteAccess_Enable ((uint16_t)0x5555) 59 | #define IWDG_WriteAccess_Disable ((uint16_t)0x0000) 60 | #define IS_IWDG_WRITE_ACCESS(ACCESS) (((ACCESS) == IWDG_WriteAccess_Enable) || \ 61 | ((ACCESS) == IWDG_WriteAccess_Disable)) 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup IWDG_prescaler 67 | * @{ 68 | */ 69 | 70 | #define IWDG_Prescaler_4 ((uint8_t)0x00) 71 | #define IWDG_Prescaler_8 ((uint8_t)0x01) 72 | #define IWDG_Prescaler_16 ((uint8_t)0x02) 73 | #define IWDG_Prescaler_32 ((uint8_t)0x03) 74 | #define IWDG_Prescaler_64 ((uint8_t)0x04) 75 | #define IWDG_Prescaler_128 ((uint8_t)0x05) 76 | #define IWDG_Prescaler_256 ((uint8_t)0x06) 77 | #define IS_IWDG_PRESCALER(PRESCALER) (((PRESCALER) == IWDG_Prescaler_4) || \ 78 | ((PRESCALER) == IWDG_Prescaler_8) || \ 79 | ((PRESCALER) == IWDG_Prescaler_16) || \ 80 | ((PRESCALER) == IWDG_Prescaler_32) || \ 81 | ((PRESCALER) == IWDG_Prescaler_64) || \ 82 | ((PRESCALER) == IWDG_Prescaler_128)|| \ 83 | ((PRESCALER) == IWDG_Prescaler_256)) 84 | /** 85 | * @} 86 | */ 87 | 88 | /** @defgroup IWDG_Flag 89 | * @{ 90 | */ 91 | 92 | #define IWDG_FLAG_PVU ((uint16_t)0x0001) 93 | #define IWDG_FLAG_RVU ((uint16_t)0x0002) 94 | #define IS_IWDG_FLAG(FLAG) (((FLAG) == IWDG_FLAG_PVU) || ((FLAG) == IWDG_FLAG_RVU)) 95 | #define IS_IWDG_RELOAD(RELOAD) ((RELOAD) <= 0xFFF) 96 | /** 97 | * @} 98 | */ 99 | 100 | /** 101 | * @} 102 | */ 103 | 104 | /** @defgroup IWDG_Exported_Macros 105 | * @{ 106 | */ 107 | 108 | /** 109 | * @} 110 | */ 111 | 112 | /** @defgroup IWDG_Exported_Functions 113 | * @{ 114 | */ 115 | 116 | void IWDG_WriteAccessCmd(uint16_t IWDG_WriteAccess); 117 | void IWDG_SetPrescaler(uint8_t IWDG_Prescaler); 118 | void IWDG_SetReload(uint16_t Reload); 119 | void IWDG_ReloadCounter(void); 120 | void IWDG_Enable(void); 121 | FlagStatus IWDG_GetFlagStatus(uint16_t IWDG_FLAG); 122 | 123 | #ifdef __cplusplus 124 | } 125 | #endif 126 | 127 | #endif /* __STM32F10x_IWDG_H */ 128 | /** 129 | * @} 130 | */ 131 | 132 | /** 133 | * @} 134 | */ 135 | 136 | /** 137 | * @} 138 | */ 139 | 140 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 141 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_pwr.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the PWR firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_PWR_H 25 | #define __STM32F10x_PWR_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup PWR 39 | * @{ 40 | */ 41 | 42 | /** @defgroup PWR_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup PWR_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup PVD_detection_level 55 | * @{ 56 | */ 57 | 58 | #define PWR_PVDLevel_2V2 ((uint32_t)0x00000000) 59 | #define PWR_PVDLevel_2V3 ((uint32_t)0x00000020) 60 | #define PWR_PVDLevel_2V4 ((uint32_t)0x00000040) 61 | #define PWR_PVDLevel_2V5 ((uint32_t)0x00000060) 62 | #define PWR_PVDLevel_2V6 ((uint32_t)0x00000080) 63 | #define PWR_PVDLevel_2V7 ((uint32_t)0x000000A0) 64 | #define PWR_PVDLevel_2V8 ((uint32_t)0x000000C0) 65 | #define PWR_PVDLevel_2V9 ((uint32_t)0x000000E0) 66 | #define IS_PWR_PVD_LEVEL(LEVEL) (((LEVEL) == PWR_PVDLevel_2V2) || ((LEVEL) == PWR_PVDLevel_2V3)|| \ 67 | ((LEVEL) == PWR_PVDLevel_2V4) || ((LEVEL) == PWR_PVDLevel_2V5)|| \ 68 | ((LEVEL) == PWR_PVDLevel_2V6) || ((LEVEL) == PWR_PVDLevel_2V7)|| \ 69 | ((LEVEL) == PWR_PVDLevel_2V8) || ((LEVEL) == PWR_PVDLevel_2V9)) 70 | /** 71 | * @} 72 | */ 73 | 74 | /** @defgroup Regulator_state_is_STOP_mode 75 | * @{ 76 | */ 77 | 78 | #define PWR_Regulator_ON ((uint32_t)0x00000000) 79 | #define PWR_Regulator_LowPower ((uint32_t)0x00000001) 80 | #define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_Regulator_ON) || \ 81 | ((REGULATOR) == PWR_Regulator_LowPower)) 82 | /** 83 | * @} 84 | */ 85 | 86 | /** @defgroup STOP_mode_entry 87 | * @{ 88 | */ 89 | 90 | #define PWR_STOPEntry_WFI ((uint8_t)0x01) 91 | #define PWR_STOPEntry_WFE ((uint8_t)0x02) 92 | #define IS_PWR_STOP_ENTRY(ENTRY) (((ENTRY) == PWR_STOPEntry_WFI) || ((ENTRY) == PWR_STOPEntry_WFE)) 93 | 94 | /** 95 | * @} 96 | */ 97 | 98 | /** @defgroup PWR_Flag 99 | * @{ 100 | */ 101 | 102 | #define PWR_FLAG_WU ((uint32_t)0x00000001) 103 | #define PWR_FLAG_SB ((uint32_t)0x00000002) 104 | #define PWR_FLAG_PVDO ((uint32_t)0x00000004) 105 | #define IS_PWR_GET_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \ 106 | ((FLAG) == PWR_FLAG_PVDO)) 107 | 108 | #define IS_PWR_CLEAR_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB)) 109 | /** 110 | * @} 111 | */ 112 | 113 | /** 114 | * @} 115 | */ 116 | 117 | /** @defgroup PWR_Exported_Macros 118 | * @{ 119 | */ 120 | 121 | /** 122 | * @} 123 | */ 124 | 125 | /** @defgroup PWR_Exported_Functions 126 | * @{ 127 | */ 128 | 129 | void PWR_DeInit(void); 130 | void PWR_BackupAccessCmd(FunctionalState NewState); 131 | void PWR_PVDCmd(FunctionalState NewState); 132 | void PWR_PVDLevelConfig(uint32_t PWR_PVDLevel); 133 | void PWR_WakeUpPinCmd(FunctionalState NewState); 134 | void PWR_EnterSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry); 135 | void PWR_EnterSTANDBYMode(void); 136 | FlagStatus PWR_GetFlagStatus(uint32_t PWR_FLAG); 137 | void PWR_ClearFlag(uint32_t PWR_FLAG); 138 | 139 | #ifdef __cplusplus 140 | } 141 | #endif 142 | 143 | #endif /* __STM32F10x_PWR_H */ 144 | /** 145 | * @} 146 | */ 147 | 148 | /** 149 | * @} 150 | */ 151 | 152 | /** 153 | * @} 154 | */ 155 | 156 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 157 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_rtc.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the RTC firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_RTC_H 25 | #define __STM32F10x_RTC_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup RTC 39 | * @{ 40 | */ 41 | 42 | /** @defgroup RTC_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup RTC_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup RTC_interrupts_define 55 | * @{ 56 | */ 57 | 58 | #define RTC_IT_OW ((uint16_t)0x0004) /*!< Overflow interrupt */ 59 | #define RTC_IT_ALR ((uint16_t)0x0002) /*!< Alarm interrupt */ 60 | #define RTC_IT_SEC ((uint16_t)0x0001) /*!< Second interrupt */ 61 | #define IS_RTC_IT(IT) ((((IT) & (uint16_t)0xFFF8) == 0x00) && ((IT) != 0x00)) 62 | #define IS_RTC_GET_IT(IT) (((IT) == RTC_IT_OW) || ((IT) == RTC_IT_ALR) || \ 63 | ((IT) == RTC_IT_SEC)) 64 | /** 65 | * @} 66 | */ 67 | 68 | /** @defgroup RTC_interrupts_flags 69 | * @{ 70 | */ 71 | 72 | #define RTC_FLAG_RTOFF ((uint16_t)0x0020) /*!< RTC Operation OFF flag */ 73 | #define RTC_FLAG_RSF ((uint16_t)0x0008) /*!< Registers Synchronized flag */ 74 | #define RTC_FLAG_OW ((uint16_t)0x0004) /*!< Overflow flag */ 75 | #define RTC_FLAG_ALR ((uint16_t)0x0002) /*!< Alarm flag */ 76 | #define RTC_FLAG_SEC ((uint16_t)0x0001) /*!< Second flag */ 77 | #define IS_RTC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint16_t)0xFFF0) == 0x00) && ((FLAG) != 0x00)) 78 | #define IS_RTC_GET_FLAG(FLAG) (((FLAG) == RTC_FLAG_RTOFF) || ((FLAG) == RTC_FLAG_RSF) || \ 79 | ((FLAG) == RTC_FLAG_OW) || ((FLAG) == RTC_FLAG_ALR) || \ 80 | ((FLAG) == RTC_FLAG_SEC)) 81 | #define IS_RTC_PRESCALER(PRESCALER) ((PRESCALER) <= 0xFFFFF) 82 | 83 | /** 84 | * @} 85 | */ 86 | 87 | /** 88 | * @} 89 | */ 90 | 91 | /** @defgroup RTC_Exported_Macros 92 | * @{ 93 | */ 94 | 95 | /** 96 | * @} 97 | */ 98 | 99 | /** @defgroup RTC_Exported_Functions 100 | * @{ 101 | */ 102 | 103 | void RTC_ITConfig(uint16_t RTC_IT, FunctionalState NewState); 104 | void RTC_EnterConfigMode(void); 105 | void RTC_ExitConfigMode(void); 106 | uint32_t RTC_GetCounter(void); 107 | void RTC_SetCounter(uint32_t CounterValue); 108 | void RTC_SetPrescaler(uint32_t PrescalerValue); 109 | void RTC_SetAlarm(uint32_t AlarmValue); 110 | uint32_t RTC_GetDivider(void); 111 | void RTC_WaitForLastTask(void); 112 | void RTC_WaitForSynchro(void); 113 | FlagStatus RTC_GetFlagStatus(uint16_t RTC_FLAG); 114 | void RTC_ClearFlag(uint16_t RTC_FLAG); 115 | ITStatus RTC_GetITStatus(uint16_t RTC_IT); 116 | void RTC_ClearITPendingBit(uint16_t RTC_IT); 117 | 118 | #ifdef __cplusplus 119 | } 120 | #endif 121 | 122 | #endif /* __STM32F10x_RTC_H */ 123 | /** 124 | * @} 125 | */ 126 | 127 | /** 128 | * @} 129 | */ 130 | 131 | /** 132 | * @} 133 | */ 134 | 135 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 136 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_wwdg.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the WWDG firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_WWDG_H 25 | #define __STM32F10x_WWDG_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup WWDG 39 | * @{ 40 | */ 41 | 42 | /** @defgroup WWDG_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup WWDG_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup WWDG_Prescaler 55 | * @{ 56 | */ 57 | 58 | #define WWDG_Prescaler_1 ((uint32_t)0x00000000) 59 | #define WWDG_Prescaler_2 ((uint32_t)0x00000080) 60 | #define WWDG_Prescaler_4 ((uint32_t)0x00000100) 61 | #define WWDG_Prescaler_8 ((uint32_t)0x00000180) 62 | #define IS_WWDG_PRESCALER(PRESCALER) (((PRESCALER) == WWDG_Prescaler_1) || \ 63 | ((PRESCALER) == WWDG_Prescaler_2) || \ 64 | ((PRESCALER) == WWDG_Prescaler_4) || \ 65 | ((PRESCALER) == WWDG_Prescaler_8)) 66 | #define IS_WWDG_WINDOW_VALUE(VALUE) ((VALUE) <= 0x7F) 67 | #define IS_WWDG_COUNTER(COUNTER) (((COUNTER) >= 0x40) && ((COUNTER) <= 0x7F)) 68 | 69 | /** 70 | * @} 71 | */ 72 | 73 | /** 74 | * @} 75 | */ 76 | 77 | /** @defgroup WWDG_Exported_Macros 78 | * @{ 79 | */ 80 | /** 81 | * @} 82 | */ 83 | 84 | /** @defgroup WWDG_Exported_Functions 85 | * @{ 86 | */ 87 | 88 | void WWDG_DeInit(void); 89 | void WWDG_SetPrescaler(uint32_t WWDG_Prescaler); 90 | void WWDG_SetWindowValue(uint8_t WindowValue); 91 | void WWDG_EnableIT(void); 92 | void WWDG_SetCounter(uint8_t Counter); 93 | void WWDG_Enable(uint8_t Counter); 94 | FlagStatus WWDG_GetFlagStatus(void); 95 | void WWDG_ClearFlag(void); 96 | 97 | #ifdef __cplusplus 98 | } 99 | #endif 100 | 101 | #endif /* __STM32F10x_WWDG_H */ 102 | 103 | /** 104 | * @} 105 | */ 106 | 107 | /** 108 | * @} 109 | */ 110 | 111 | /** 112 | * @} 113 | */ 114 | 115 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 116 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_crc.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the CRC firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_crc.h" 24 | 25 | /** @addtogroup STM32F10x_StdPeriph_Driver 26 | * @{ 27 | */ 28 | 29 | /** @defgroup CRC 30 | * @brief CRC driver modules 31 | * @{ 32 | */ 33 | 34 | /** @defgroup CRC_Private_TypesDefinitions 35 | * @{ 36 | */ 37 | 38 | /** 39 | * @} 40 | */ 41 | 42 | /** @defgroup CRC_Private_Defines 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup CRC_Private_Macros 51 | * @{ 52 | */ 53 | 54 | /** 55 | * @} 56 | */ 57 | 58 | /** @defgroup CRC_Private_Variables 59 | * @{ 60 | */ 61 | 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup CRC_Private_FunctionPrototypes 67 | * @{ 68 | */ 69 | 70 | /** 71 | * @} 72 | */ 73 | 74 | /** @defgroup CRC_Private_Functions 75 | * @{ 76 | */ 77 | 78 | /** 79 | * @brief Resets the CRC Data register (DR). 80 | * @param None 81 | * @retval None 82 | */ 83 | void CRC_ResetDR(void) 84 | { 85 | /* Reset CRC generator */ 86 | CRC->CR = CRC_CR_RESET; 87 | } 88 | 89 | /** 90 | * @brief Computes the 32-bit CRC of a given data word(32-bit). 91 | * @param Data: data word(32-bit) to compute its CRC 92 | * @retval 32-bit CRC 93 | */ 94 | uint32_t CRC_CalcCRC(uint32_t Data) 95 | { 96 | CRC->DR = Data; 97 | 98 | return (CRC->DR); 99 | } 100 | 101 | /** 102 | * @brief Computes the 32-bit CRC of a given buffer of data word(32-bit). 103 | * @param pBuffer: pointer to the buffer containing the data to be computed 104 | * @param BufferLength: length of the buffer to be computed 105 | * @retval 32-bit CRC 106 | */ 107 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength) 108 | { 109 | uint32_t index = 0; 110 | 111 | for(index = 0; index < BufferLength; index++) 112 | { 113 | CRC->DR = pBuffer[index]; 114 | } 115 | return (CRC->DR); 116 | } 117 | 118 | /** 119 | * @brief Returns the current CRC value. 120 | * @param None 121 | * @retval 32-bit CRC 122 | */ 123 | uint32_t CRC_GetCRC(void) 124 | { 125 | return (CRC->DR); 126 | } 127 | 128 | /** 129 | * @brief Stores a 8-bit data in the Independent Data(ID) register. 130 | * @param IDValue: 8-bit value to be stored in the ID register 131 | * @retval None 132 | */ 133 | void CRC_SetIDRegister(uint8_t IDValue) 134 | { 135 | CRC->IDR = IDValue; 136 | } 137 | 138 | /** 139 | * @brief Returns the 8-bit data stored in the Independent Data(ID) register 140 | * @param None 141 | * @retval 8-bit value of the ID register 142 | */ 143 | uint8_t CRC_GetIDRegister(void) 144 | { 145 | return (CRC->IDR); 146 | } 147 | 148 | /** 149 | * @} 150 | */ 151 | 152 | /** 153 | * @} 154 | */ 155 | 156 | /** 157 | * @} 158 | */ 159 | 160 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 161 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/STM32F10x_FWLib/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/STM32F10x_FWLib/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_iwdg.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the IWDG firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_iwdg.h" 24 | 25 | /** @addtogroup STM32F10x_StdPeriph_Driver 26 | * @{ 27 | */ 28 | 29 | /** @defgroup IWDG 30 | * @brief IWDG driver modules 31 | * @{ 32 | */ 33 | 34 | /** @defgroup IWDG_Private_TypesDefinitions 35 | * @{ 36 | */ 37 | 38 | /** 39 | * @} 40 | */ 41 | 42 | /** @defgroup IWDG_Private_Defines 43 | * @{ 44 | */ 45 | 46 | /* ---------------------- IWDG registers bit mask ----------------------------*/ 47 | 48 | /* KR register bit mask */ 49 | #define KR_KEY_Reload ((uint16_t)0xAAAA) 50 | #define KR_KEY_Enable ((uint16_t)0xCCCC) 51 | 52 | /** 53 | * @} 54 | */ 55 | 56 | /** @defgroup IWDG_Private_Macros 57 | * @{ 58 | */ 59 | 60 | /** 61 | * @} 62 | */ 63 | 64 | /** @defgroup IWDG_Private_Variables 65 | * @{ 66 | */ 67 | 68 | /** 69 | * @} 70 | */ 71 | 72 | /** @defgroup IWDG_Private_FunctionPrototypes 73 | * @{ 74 | */ 75 | 76 | /** 77 | * @} 78 | */ 79 | 80 | /** @defgroup IWDG_Private_Functions 81 | * @{ 82 | */ 83 | 84 | /** 85 | * @brief Enables or disables write access to IWDG_PR and IWDG_RLR registers. 86 | * @param IWDG_WriteAccess: new state of write access to IWDG_PR and IWDG_RLR registers. 87 | * This parameter can be one of the following values: 88 | * @arg IWDG_WriteAccess_Enable: Enable write access to IWDG_PR and IWDG_RLR registers 89 | * @arg IWDG_WriteAccess_Disable: Disable write access to IWDG_PR and IWDG_RLR registers 90 | * @retval None 91 | */ 92 | void IWDG_WriteAccessCmd(uint16_t IWDG_WriteAccess) 93 | { 94 | /* Check the parameters */ 95 | assert_param(IS_IWDG_WRITE_ACCESS(IWDG_WriteAccess)); 96 | IWDG->KR = IWDG_WriteAccess; 97 | } 98 | 99 | /** 100 | * @brief Sets IWDG Prescaler value. 101 | * @param IWDG_Prescaler: specifies the IWDG Prescaler value. 102 | * This parameter can be one of the following values: 103 | * @arg IWDG_Prescaler_4: IWDG prescaler set to 4 104 | * @arg IWDG_Prescaler_8: IWDG prescaler set to 8 105 | * @arg IWDG_Prescaler_16: IWDG prescaler set to 16 106 | * @arg IWDG_Prescaler_32: IWDG prescaler set to 32 107 | * @arg IWDG_Prescaler_64: IWDG prescaler set to 64 108 | * @arg IWDG_Prescaler_128: IWDG prescaler set to 128 109 | * @arg IWDG_Prescaler_256: IWDG prescaler set to 256 110 | * @retval None 111 | */ 112 | void IWDG_SetPrescaler(uint8_t IWDG_Prescaler) 113 | { 114 | /* Check the parameters */ 115 | assert_param(IS_IWDG_PRESCALER(IWDG_Prescaler)); 116 | IWDG->PR = IWDG_Prescaler; 117 | } 118 | 119 | /** 120 | * @brief Sets IWDG Reload value. 121 | * @param Reload: specifies the IWDG Reload value. 122 | * This parameter must be a number between 0 and 0x0FFF. 123 | * @retval None 124 | */ 125 | void IWDG_SetReload(uint16_t Reload) 126 | { 127 | /* Check the parameters */ 128 | assert_param(IS_IWDG_RELOAD(Reload)); 129 | IWDG->RLR = Reload; 130 | } 131 | 132 | /** 133 | * @brief Reloads IWDG counter with value defined in the reload register 134 | * (write access to IWDG_PR and IWDG_RLR registers disabled). 135 | * @param None 136 | * @retval None 137 | */ 138 | void IWDG_ReloadCounter(void) 139 | { 140 | IWDG->KR = KR_KEY_Reload; 141 | } 142 | 143 | /** 144 | * @brief Enables IWDG (write access to IWDG_PR and IWDG_RLR registers disabled). 145 | * @param None 146 | * @retval None 147 | */ 148 | void IWDG_Enable(void) 149 | { 150 | IWDG->KR = KR_KEY_Enable; 151 | } 152 | 153 | /** 154 | * @brief Checks whether the specified IWDG flag is set or not. 155 | * @param IWDG_FLAG: specifies the flag to check. 156 | * This parameter can be one of the following values: 157 | * @arg IWDG_FLAG_PVU: Prescaler Value Update on going 158 | * @arg IWDG_FLAG_RVU: Reload Value Update on going 159 | * @retval The new state of IWDG_FLAG (SET or RESET). 160 | */ 161 | FlagStatus IWDG_GetFlagStatus(uint16_t IWDG_FLAG) 162 | { 163 | FlagStatus bitstatus = RESET; 164 | /* Check the parameters */ 165 | assert_param(IS_IWDG_FLAG(IWDG_FLAG)); 166 | if ((IWDG->SR & IWDG_FLAG) != (uint32_t)RESET) 167 | { 168 | bitstatus = SET; 169 | } 170 | else 171 | { 172 | bitstatus = RESET; 173 | } 174 | /* Return the flag status */ 175 | return bitstatus; 176 | } 177 | 178 | /** 179 | * @} 180 | */ 181 | 182 | /** 183 | * @} 184 | */ 185 | 186 | /** 187 | * @} 188 | */ 189 | 190 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 191 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/STM32F10x_FWLib/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /SYSTEM/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/SYSTEM/delay/delay.c -------------------------------------------------------------------------------- /SYSTEM/delay/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/SYSTEM/delay/delay.h -------------------------------------------------------------------------------- /SYSTEM/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/SYSTEM/sys/sys.c -------------------------------------------------------------------------------- /SYSTEM/sys/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/SYSTEM/sys/sys.h -------------------------------------------------------------------------------- /SYSTEM/usart/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/SYSTEM/usart/usart.c -------------------------------------------------------------------------------- /SYSTEM/usart/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/SYSTEM/usart/usart.h -------------------------------------------------------------------------------- /TEXT/fontupd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/TEXT/fontupd.c -------------------------------------------------------------------------------- /TEXT/fontupd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/TEXT/fontupd.h -------------------------------------------------------------------------------- /TEXT/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/TEXT/text.c -------------------------------------------------------------------------------- /TEXT/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/TEXT/text.h -------------------------------------------------------------------------------- /USER/DebugConfig/alert_system_STM32F103ZE_1.0.0.dbgconf: -------------------------------------------------------------------------------- 1 | // File: STM32F101_102_103_105_107.dbgconf 2 | // Version: 1.0.0 3 | // Note: refer to STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx Reference manual (RM0008) 4 | // STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx datasheets 5 | 6 | // <<< Use Configuration Wizard in Context Menu >>> 7 | 8 | // Debug MCU configuration register (DBGMCU_CR) 9 | // Reserved bits must be kept at reset value 10 | // DBG_TIM11_STOP TIM11 counter stopped when core is halted 11 | // DBG_TIM10_STOP TIM10 counter stopped when core is halted 12 | // DBG_TIM9_STOP TIM9 counter stopped when core is halted 13 | // DBG_TIM14_STOP TIM14 counter stopped when core is halted 14 | // DBG_TIM13_STOP TIM13 counter stopped when core is halted 15 | // DBG_TIM12_STOP TIM12 counter stopped when core is halted 16 | // DBG_CAN2_STOP Debug CAN2 stopped when core is halted 17 | // DBG_TIM7_STOP TIM7 counter stopped when core is halted 18 | // DBG_TIM6_STOP TIM6 counter stopped when core is halted 19 | // DBG_TIM5_STOP TIM5 counter stopped when core is halted 20 | // DBG_TIM8_STOP TIM8 counter stopped when core is halted 21 | // DBG_I2C2_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted 22 | // DBG_I2C1_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted 23 | // DBG_CAN1_STOP Debug CAN1 stopped when Core is halted 24 | // DBG_TIM4_STOP TIM4 counter stopped when core is halted 25 | // DBG_TIM3_STOP TIM3 counter stopped when core is halted 26 | // DBG_TIM2_STOP TIM2 counter stopped when core is halted 27 | // DBG_TIM1_STOP TIM1 counter stopped when core is halted 28 | // DBG_WWDG_STOP Debug window watchdog stopped when core is halted 29 | // DBG_IWDG_STOP Debug independent watchdog stopped when core is halted 30 | // DBG_STANDBY Debug standby mode 31 | // DBG_STOP Debug stop mode 32 | // DBG_SLEEP Debug sleep mode 33 | // 34 | DbgMCU_CR = 0x00000007; 35 | 36 | // <<< end of configuration section >>> 37 | -------------------------------------------------------------------------------- /USER/JLinkSettings.ini: -------------------------------------------------------------------------------- 1 | [BREAKPOINTS] 2 | ForceImpTypeAny = 0 3 | ShowInfoWin = 1 4 | EnableFlashBP = 2 5 | BPDuringExecution = 0 6 | [CFI] 7 | CFISize = 0x00 8 | CFIAddr = 0x00 9 | [CPU] 10 | OverrideMemMap = 0 11 | AllowSimulation = 1 12 | ScriptFile="" 13 | [FLASH] 14 | CacheExcludeSize = 0x00 15 | CacheExcludeAddr = 0x00 16 | MinNumBytesFlashDL = 0 17 | SkipProgOnCRCMatch = 1 18 | VerifyDownload = 1 19 | AllowCaching = 1 20 | EnableFlashDL = 2 21 | Override = 0 22 | Device="UNSPECIFIED" 23 | [GENERAL] 24 | WorkRAMSize = 0x00 25 | WorkRAMAddr = 0x00 26 | RAMUsageLimit = 0x00 27 | [SWO] 28 | SWOLogFile="" 29 | [MEM] 30 | RdOverrideOrMask = 0x00 31 | RdOverrideAndMask = 0xFFFFFFFF 32 | RdOverrideAddr = 0xFFFFFFFF 33 | WrOverrideOrMask = 0x00 34 | WrOverrideAndMask = 0xFFFFFFFF 35 | WrOverrideAddr = 0xFFFFFFFF 36 | -------------------------------------------------------------------------------- /USER/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/USER/main.c -------------------------------------------------------------------------------- /USER/startup_stm32f10x_hd.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/USER/startup_stm32f10x_hd.lst -------------------------------------------------------------------------------- /USER/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/USER/stm32f10x.h -------------------------------------------------------------------------------- /USER/stm32f10x_conf.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/stm32f10x_conf.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief Library configuration file. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __STM32F10x_CONF_H 24 | #define __STM32F10x_CONF_H 25 | 26 | /* Includes ------------------------------------------------------------------*/ 27 | /* Uncomment/Comment the line below to enable/disable peripheral header file inclusion */ 28 | #include "stm32f10x_adc.h" 29 | //#include "stm32f10x_bkp.h" 30 | //#include "stm32f10x_can.h" 31 | //#include "stm32f10x_cec.h" 32 | //#include "stm32f10x_crc.h" 33 | //#include "stm32f10x_dac.h" 34 | //#include "stm32f10x_dbgmcu.h" 35 | #include "stm32f10x_dma.h" 36 | #include "stm32f10x_exti.h" 37 | #include "stm32f10x_flash.h" 38 | #include "stm32f10x_fsmc.h" 39 | #include "stm32f10x_gpio.h" 40 | //#include "stm32f10x_i2c.h" 41 | //#include "stm32f10x_iwdg.h" 42 | //#include "stm32f10x_pwr.h" 43 | #include "stm32f10x_rcc.h" 44 | //#include "stm32f10x_rtc.h" 45 | #include "stm32f10x_sdio.h" 46 | #include "stm32f10x_spi.h" 47 | #include "stm32f10x_tim.h" 48 | #include "stm32f10x_usart.h" 49 | //#include "stm32f10x_wwdg.h" 50 | #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */ 51 | 52 | /* Exported types ------------------------------------------------------------*/ 53 | /* Exported constants --------------------------------------------------------*/ 54 | /* Uncomment the line below to expanse the "assert_param" macro in the 55 | Standard Peripheral Library drivers code */ 56 | /* #define USE_FULL_ASSERT 1 */ 57 | 58 | /* Exported macro ------------------------------------------------------------*/ 59 | #ifdef USE_FULL_ASSERT 60 | 61 | /** 62 | * @brief The assert_param macro is used for function's parameters check. 63 | * @param expr: If expr is false, it calls assert_failed function which reports 64 | * the name of the source file and the source line number of the call 65 | * that failed. If expr is true, it returns no value. 66 | * @retval None 67 | */ 68 | #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) 69 | /* Exported functions ------------------------------------------------------- */ 70 | void assert_failed(uint8_t* file, uint32_t line); 71 | #else 72 | #define assert_param(expr) ((void)0) 73 | #endif /* USE_FULL_ASSERT */ 74 | 75 | #endif /* __STM32F10x_CONF_H */ 76 | 77 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 78 | -------------------------------------------------------------------------------- /USER/stm32f10x_it.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/stm32f10x_it.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief Main Interrupt Service Routines. 8 | * This file provides template for all exceptions handler and peripherals 9 | * interrupt service routine. 10 | ****************************************************************************** 11 | * @attention 12 | * 13 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 14 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 15 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 16 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 17 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 18 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 19 | * 20 | *

© COPYRIGHT 2011 STMicroelectronics

21 | ****************************************************************************** 22 | */ 23 | 24 | /* Includes ------------------------------------------------------------------*/ 25 | #include "stm32f10x_it.h" 26 | 27 | 28 | 29 | void NMI_Handler(void) 30 | { 31 | } 32 | 33 | void HardFault_Handler(void) 34 | { 35 | /* Go to infinite loop when Hard Fault exception occurs */ 36 | while (1) 37 | { 38 | } 39 | } 40 | 41 | void MemManage_Handler(void) 42 | { 43 | /* Go to infinite loop when Memory Manage exception occurs */ 44 | while (1) 45 | { 46 | } 47 | } 48 | 49 | 50 | void BusFault_Handler(void) 51 | { 52 | /* Go to infinite loop when Bus Fault exception occurs */ 53 | while (1) 54 | { 55 | } 56 | } 57 | 58 | void UsageFault_Handler(void) 59 | { 60 | /* Go to infinite loop when Usage Fault exception occurs */ 61 | while (1) 62 | { 63 | } 64 | } 65 | 66 | void SVC_Handler(void) 67 | { 68 | } 69 | 70 | void DebugMon_Handler(void) 71 | { 72 | } 73 | 74 | void PendSV_Handler(void) 75 | { 76 | } 77 | 78 | void SysTick_Handler(void) 79 | { 80 | } 81 | 82 | /******************************************************************************/ 83 | /* STM32F10x Peripherals Interrupt Handlers */ 84 | /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */ 85 | /* available peripheral interrupt handler's name please refer to the startup */ 86 | /* file (startup_stm32f10x_xx.s). */ 87 | /******************************************************************************/ 88 | -------------------------------------------------------------------------------- /USER/stm32f10x_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/stm32f10x_it.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief This file contains the headers of the interrupt handlers. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __STM32F10x_IT_H 24 | #define __STM32F10x_IT_H 25 | 26 | /* Includes ------------------------------------------------------------------*/ 27 | #include "stm32f10x.h" 28 | 29 | /* Exported types ------------------------------------------------------------*/ 30 | /* Exported constants --------------------------------------------------------*/ 31 | /* Exported macro ------------------------------------------------------------*/ 32 | /* Exported functions ------------------------------------------------------- */ 33 | 34 | void NMI_Handler(void); 35 | void HardFault_Handler(void); 36 | void MemManage_Handler(void); 37 | void BusFault_Handler(void); 38 | void UsageFault_Handler(void); 39 | void SVC_Handler(void); 40 | void DebugMon_Handler(void); 41 | void PendSV_Handler(void); 42 | void SysTick_Handler(void); 43 | 44 | #endif /* __STM32F10x_IT_H */ 45 | 46 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 47 | -------------------------------------------------------------------------------- /USER/system_stm32f10x.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file system_stm32f10x.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /** @addtogroup CMSIS 23 | * @{ 24 | */ 25 | 26 | /** @addtogroup stm32f10x_system 27 | * @{ 28 | */ 29 | 30 | /** 31 | * @brief Define to prevent recursive inclusion 32 | */ 33 | #ifndef __SYSTEM_STM32F10X_H 34 | #define __SYSTEM_STM32F10X_H 35 | 36 | #ifdef __cplusplus 37 | extern "C" { 38 | #endif 39 | 40 | /** @addtogroup STM32F10x_System_Includes 41 | * @{ 42 | */ 43 | 44 | /** 45 | * @} 46 | */ 47 | 48 | 49 | /** @addtogroup STM32F10x_System_Exported_types 50 | * @{ 51 | */ 52 | 53 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ 54 | 55 | /** 56 | * @} 57 | */ 58 | 59 | /** @addtogroup STM32F10x_System_Exported_Constants 60 | * @{ 61 | */ 62 | 63 | /** 64 | * @} 65 | */ 66 | 67 | /** @addtogroup STM32F10x_System_Exported_Macros 68 | * @{ 69 | */ 70 | 71 | /** 72 | * @} 73 | */ 74 | 75 | /** @addtogroup STM32F10x_System_Exported_Functions 76 | * @{ 77 | */ 78 | 79 | extern void SystemInit(void); 80 | extern void SystemCoreClockUpdate(void); 81 | /** 82 | * @} 83 | */ 84 | 85 | #ifdef __cplusplus 86 | } 87 | #endif 88 | 89 | #endif /*__SYSTEM_STM32F10X_H */ 90 | 91 | /** 92 | * @} 93 | */ 94 | 95 | /** 96 | * @} 97 | */ 98 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 99 | -------------------------------------------------------------------------------- /USMART/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/USMART/readme.txt -------------------------------------------------------------------------------- /USMART/usmart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/USMART/usmart.c -------------------------------------------------------------------------------- /USMART/usmart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/USMART/usmart.h -------------------------------------------------------------------------------- /USMART/usmart_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/USMART/usmart_config.c -------------------------------------------------------------------------------- /USMART/usmart_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/USMART/usmart_str.c -------------------------------------------------------------------------------- /USMART/usmart_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shadow-Java/alert-system/6996a86fc5e4ea4aeb19a0370207619a552e398c/USMART/usmart_str.h --------------------------------------------------------------------------------