The purpose of this project is to make it possible to remotely switch on a Webasto Thermo Top C water heater that is used to pre-heat the heating system of a car without starting the motor.
A Convex Hull is the smallest convex polygon that contains every point of the set S. A polygon P is convex if and only if, for any two points A and B inside the polygon, the line segment AB is inside P.
One way to visualize a convex hull is to put a "rubber band" around all the points, and let it wrap as tight as it can. The resultant polygon is a convex hull.
垃圾文件清理:
垃圾文件清理:
垃圾文件清理
Clean Windows Programs:
:rd_dir
if " R:~-2,1 "=="\" set R=" R:~1,-2 "
if not exist R goto :DD
cd /d R
for /f "delims=" a in ( dir/ad/b ) do rd /s /q " a"
del /f /s /q *
cdrd /s /q R
:DD
Clean Windows Programs:
:rd_dir
if " R:~-2,1 "=="\" set R=" R:~1,-2 "
if not exist R goto :DD
cd /d R
for /f "delims=" a in ( dir/ad/b ) do rd /s /q " a"
del /f /s /q *
cdrd /s /q R
:DD
1. This BSP can support 2443EVT0 board.
If you want to use EVT0 BSP, set followings.
In smdk2443\smdk2443.bat file
set BSP_EVT1=1
-> set BSP_EVT1=
In smdk2443\src\inc\bsp_cfg.h file
#define EVT1
-> #define EVT0
2. Default system tick mode is changed. The value is fixed tick.
Fixed tick means that tick interrupt is occurred every 1ms.
Variable tick means that timer interrupt period is changed when power mode is in idle.
For changing to variable tick
In smdk2443\src\inc\bsp_cfg.h file
#define FIXEDTICK
-> #define VARTICK
In smdk2443\src\Common\Timer\Sources file
SOURCES= timer_fixedtick.c watchdog.c
->
SOURCES= timer_vartick.c watchdog.c