【E1252】STM32出租车计价器设计源码与文档资料

2021-09-20 14:58:22      索炜达电子      542     

项目编号:E1251

文件大小:10M

源码说明:带中文注释

开发环境:C编译器

简要概述:

(1)能显示里程,单位为公里,最后一位为小数位。

(2)能显示金额数,单位为元,最后一位为小数位。

(3)可设定单程价格和往返价格,单程价格为2元/公里,往返价格为1.5元/公里。

(4)车速<5公里/小时的时间累积为总等待时间,每5分钟等待时间相当于里程数增加1公里。

(5)起步公里数为3公里,价格为5元,若实际距离大于3公里,按规则3计算价格。

(6)按暂停键,计价器可暂停计价,按查询键,可显示总等待时间。
1 液晶尺寸是3.2寸,控制器是 ILI9341
2 SD卡4位模式DMA ,支持长文件名及中文文件名
制作出来的stm32出租车计价器实物图如下:

【E1252】STM32出租车计价器设计源码与文档资料

目录│文件列表:

 └ 项目

    │ ILI9341_DS_V1[1].09_20110315.pdf

    │ Outline- BL32007V2.pdf

    │ 出租车计价器设计.doc

    │ 触摸控制器tsc2046.pdf

    └ 程序

       │ Readme.txt

       ├ CMSIS

       │  │ core_cm3.c

       │  │ core_cm3.h

       │  │ startup_stm32f10x_hd.s

       │  │ stm32f10x.h

       │  │ system_stm32f10x.c

       │  └ system_stm32f10x.h

       ├ ff9

       │  │ 00readme.txt

       │  │ diskio.c

       │  │ diskio.h

       │  │ ff.c

       │  │ ff.h

       │  │ ffconf.h

       │  │ integer.h

       │  └ option

       │     │ cc932.c

       │     │ cc936.c

       │     │ cc949.c

       │     │ cc950.c

       │     │ ccsbcs.c

       │     └ syscall.c

       ├ 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

       ├ output

       │  └ systick.hex

       └ USER

          │ adc.c

          │ adc.h

          │ ascii.h

          │ asc_font.h

          │ ds18b20.c

          │ ds18b20.h

          │ exti.c

          │ exti.h

          │ fatfs0.09.uvgui.Administrator

          │ fatfs0.09.uvgui.flyleaf

          │ fatfs0.09.uvgui.hp

          │ fatfs0.09.uvopt

          │ fatfs0.09.uvproj

          │ JLink Regs CM3.txt

          │ JLinkSettings.ini

          │ lcd.c

          │ lcd.h

          │ lcd_botton.c

          │ lcd_botton.h

          │ led.c

          │ led.h

          │ main.c

          │ pwm_output.c

          │ pwm_output.h

          │ sdio_4bit.uvgui.flyleaf

          │ sdio_4bit.uvopt

          │ sdio_sdcard.c

          │ sdio_sdcard.h

          │ Sd_bmp.c

          │ Sd_bmp.h

          │ sd_fs_app.c

          │ sd_fs_app.h

          │ SPI_NRF.c

          │ SPI_NRF.h

          │ stm32f10x_conf.h

          │ stm32f10x_it.c

          │ stm32f10x_it.h

          │ SysTick.c

          │ SysTick.h

          │ Time_test.c

          │ Time_test.h

          │ usart1.c

          └ usart1.h

TAG出租车计价器
  • 6 次
  • 1 分