Fix a typo in the profile ringbuffer start address.

The profile ringbuffer is supposed to be located after the logbook
ringbuffer, but due a silly typo they did overlap with 256 bytes.
This commit is contained in:
Jef Driesen 2014-05-19 20:50:30 +02:00
parent 654a909936
commit 48924123a6

View File

@ -46,7 +46,7 @@
#define RB_LOGBOOK_SIZE 0x52
#define RB_LOGBOOK_COUNT ((RB_LOGBOOK_END - RB_LOGBOOK_BEGIN) / RB_LOGBOOK_SIZE)
#define RB_PROFILE_BEGIN 0x1338
#define RB_PROFILE_BEGIN 0x1438
#define RB_PROFILE_END SZ_MEMORY
#define RB_PROFILE_DISTANCE(a,b) ringbuffer_distance (a, b, 0, RB_PROFILE_BEGIN, RB_PROFILE_END)