Difference between revisions of "BTP300A Team 2 Bugs Report"
m (→Week 4) |
(→Week 4) |
||
Line 15: | Line 15: | ||
==Week 4 == | ==Week 4 == | ||
+ | |||
Working on Edit function: | Working on Edit function: | ||
* RIGHT, LEFT and BACKSPACE working. | * RIGHT, LEFT and BACKSPACE working. | ||
Line 20: | Line 21: | ||
* Correctly using curPosition and strOffset after changing logic (sending pointers to display function). | * Correctly using curPosition and strOffset after changing logic (sending pointers to display function). | ||
* Problems over-striking characters in field. | * Problems over-striking characters in field. | ||
− | Sept 28/13 | + | (Sept 28/13) |
* Over-striking works properly, minus trying to type something at the very end of the string(most likely a memory leak). | * Over-striking works properly, minus trying to type something at the very end of the string(most likely a memory leak). | ||
* END button was not working as intended(was going to position 28 instead of 27) in the event strlen was 27 [FIXED]. | * END button was not working as intended(was going to position 28 instead of 27) in the event strlen was 27 [FIXED]. | ||
− | + | (**UPDATE) | |
* Memory leak was a result of right arrow and overstike mode allowing strOffset to get too high, (maxStringLength - 1), | * Memory leak was a result of right arrow and overstike mode allowing strOffset to get too high, (maxStringLength - 1), | ||
proper max is (maxStringLength - fieldLength - 1). | proper max is (maxStringLength - fieldLength - 1). | ||
* Fixed END key for the third time. It's strOffset went too far and allowed typing and such outside of string after hitting end. | * Fixed END key for the third time. It's strOffset went too far and allowed typing and such outside of string after hitting end. | ||
+ | * BACKSPACE appears to be fully functional (it no longer acts like DEL when (strOffset + curPosition = 0)) |
Revision as of 20:32, 28 September 2013
TEAM 2 - Pedro Bellesa || David Gousvaris
Week 1
Reading Assignment documents.
Week 2
Working on Display function. * Problems with cursor positioning.
Week 3
Display Function working. Working on Edit function: * RIGHT, LEFT and BACKSPACE. * Not sure how to use curPosition and strOffset.
Week 4
Working on Edit function: * RIGHT, LEFT and BACKSPACE working. * HOME, END and exit keys working. * Correctly using curPosition and strOffset after changing logic (sending pointers to display function). * Problems over-striking characters in field.
(Sept 28/13)
* Over-striking works properly, minus trying to type something at the very end of the string(most likely a memory leak). * END button was not working as intended(was going to position 28 instead of 27) in the event strlen was 27 [FIXED]. (**UPDATE) * Memory leak was a result of right arrow and overstike mode allowing strOffset to get too high, (maxStringLength - 1), proper max is (maxStringLength - fieldLength - 1). * Fixed END key for the third time. It's strOffset went too far and allowed typing and such outside of string after hitting end. * BACKSPACE appears to be fully functional (it no longer acts like DEL when (strOffset + curPosition = 0))