git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@500 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
48d294c62f
commit
86acf7daf6
|
@ -71,9 +71,5 @@ Settings: MCLK=DCOCLK 750Khz
|
||||||
--- Score : 5432 bytes/S
|
--- Score : 5432 bytes/S
|
||||||
--- Result: SUCCESS
|
--- Result: SUCCESS
|
||||||
---------------------------------------------------------------------------
|
---------------------------------------------------------------------------
|
||||||
--- Test Case 20 (Benchmark, virtual timers set/reset)
|
|
||||||
--- Score : 5636 timers/S
|
|
||||||
--- Result: SUCCESS
|
|
||||||
---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Final result: SUCCESS
|
Final result: SUCCESS
|
||||||
|
|
|
@ -74,6 +74,9 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 0.7.4 ***
|
*** 0.7.4 ***
|
||||||
|
- CHANGE: Modified chDbgAssert() to syntax check the condition even when the
|
||||||
|
CH_USE_DEBUG is disabled, it produces no code but allows to check the
|
||||||
|
option without have to compile twice.
|
||||||
- Added a new benchmark to the test suite (timers set/reset performance).
|
- Added a new benchmark to the test suite (timers set/reset performance).
|
||||||
- Renamed the macro fifo_init() to queue_init() because it is used to init
|
- Renamed the macro fifo_init() to queue_init() because it is used to init
|
||||||
both FIFO queues and priority queues.
|
both FIFO queues and priority queues.
|
||||||
|
|
|
@ -57,7 +57,6 @@ extern char *dbglastmsg;
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
void chDbgInit(void);
|
void chDbgInit(void);
|
||||||
void chDbgPuts(char *msg);
|
|
||||||
void chDbgPanic(char *msg);
|
void chDbgPanic(char *msg);
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@ -80,7 +79,7 @@ extern "C" {
|
||||||
|
|
||||||
#define chDbgInit()
|
#define chDbgInit()
|
||||||
#define chDbgPanic(msg) {}
|
#define chDbgPanic(msg) {}
|
||||||
#define chDbgAssert(c, m) {}
|
#define chDbgAssert(c, m) {(void)(c);}
|
||||||
|
|
||||||
#endif /* CH_USE_DEBUG */
|
#endif /* CH_USE_DEBUG */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue