├── .gitignore ├── CCS ├── .ccsproject ├── .cproject ├── .project └── lnk_msp430g2553.cmd ├── IAR ├── EPD_Clock.ewd ├── EPD_Clock.ewp └── EPD_Clock.eww ├── Images ├── HSPriceTag.png ├── HardwareConnection.png ├── Layout.png └── Modify.png ├── LICENSE ├── README.md ├── Src ├── IAR_S │ └── RTC_Calendar.s43 ├── Main │ ├── common.c │ ├── common.h │ ├── def.h │ └── main.c └── Module │ ├── RTC_Calendar.asm │ ├── RTC_Calendar.h │ ├── epd.c │ ├── epd.h │ ├── flash.c │ ├── flash.h │ ├── font.c │ ├── font.h │ ├── shell.c │ ├── shell.h │ ├── softspi3w.c │ ├── softspi3w.h │ ├── softuart.c │ ├── softuart.h │ ├── ucbspi.c │ └── ucbspi.h └── tools └── SetTime.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | Debug 3 | targetConfigs 4 | .settings 5 | -------------------------------------------------------------------------------- /CCS/.ccsproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/CCS/.ccsproject -------------------------------------------------------------------------------- /CCS/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/CCS/.cproject -------------------------------------------------------------------------------- /CCS/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/CCS/.project -------------------------------------------------------------------------------- /CCS/lnk_msp430g2553.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/CCS/lnk_msp430g2553.cmd -------------------------------------------------------------------------------- /IAR/EPD_Clock.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/IAR/EPD_Clock.ewd -------------------------------------------------------------------------------- /IAR/EPD_Clock.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/IAR/EPD_Clock.ewp -------------------------------------------------------------------------------- /IAR/EPD_Clock.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/IAR/EPD_Clock.eww -------------------------------------------------------------------------------- /Images/HSPriceTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Images/HSPriceTag.png -------------------------------------------------------------------------------- /Images/HardwareConnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Images/HardwareConnection.png -------------------------------------------------------------------------------- /Images/Layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Images/Layout.png -------------------------------------------------------------------------------- /Images/Modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Images/Modify.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/README.md -------------------------------------------------------------------------------- /Src/IAR_S/RTC_Calendar.s43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/IAR_S/RTC_Calendar.s43 -------------------------------------------------------------------------------- /Src/Main/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Main/common.c -------------------------------------------------------------------------------- /Src/Main/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Main/common.h -------------------------------------------------------------------------------- /Src/Main/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Main/def.h -------------------------------------------------------------------------------- /Src/Main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Main/main.c -------------------------------------------------------------------------------- /Src/Module/RTC_Calendar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/RTC_Calendar.asm -------------------------------------------------------------------------------- /Src/Module/RTC_Calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/RTC_Calendar.h -------------------------------------------------------------------------------- /Src/Module/epd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/epd.c -------------------------------------------------------------------------------- /Src/Module/epd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/epd.h -------------------------------------------------------------------------------- /Src/Module/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/flash.c -------------------------------------------------------------------------------- /Src/Module/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/flash.h -------------------------------------------------------------------------------- /Src/Module/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/font.c -------------------------------------------------------------------------------- /Src/Module/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/font.h -------------------------------------------------------------------------------- /Src/Module/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/shell.c -------------------------------------------------------------------------------- /Src/Module/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/shell.h -------------------------------------------------------------------------------- /Src/Module/softspi3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/softspi3w.c -------------------------------------------------------------------------------- /Src/Module/softspi3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/softspi3w.h -------------------------------------------------------------------------------- /Src/Module/softuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/softuart.c -------------------------------------------------------------------------------- /Src/Module/softuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/softuart.h -------------------------------------------------------------------------------- /Src/Module/ucbspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/ucbspi.c -------------------------------------------------------------------------------- /Src/Module/ucbspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/Src/Module/ucbspi.h -------------------------------------------------------------------------------- /tools/SetTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxp1943/HanshowEpd/HEAD/tools/SetTime.py --------------------------------------------------------------------------------