Custom Query (38 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 38)

1 2 3 4 5 6 7 8 9 10 11 12 13
Ticket Resolution Summary Owner Reporter
#15 fixed juciphox Finnish language file based english rev 461 phyrephox anonymous

Reported by anonymous, 5 years ago.

Description

Juciphox Finnish language file (and fixed to better fit display)

one bug with ixus 860:
it could reproduce
set Edge overlay visible
half press shutter to take image
set original canon menu visible (alt off)

then target image overlay original menu.

#30 wontfix micro basic get_next_token can be optimized MartinBudden

Reported by MartinBudden, 5 years ago.

Description

The get_next_token function has quite a high impact on the performance of micro basic. Adam Dunkels's original micro basic had only 13 keywords, so this function could afford to be inefficient. Micro basic currently has over 130 functions and could benefit from improvements in this function.

There are two obvious improvements:

  1. pre-calculate the lengths of the keywords, rather than do it in the inner loop
  2. use a binary search rather than a linear search to find the token (this requires the keywords array to be put in lexical order).
#10 fixed missing ubasic command get_raw_nr cyril42e

Reported by cyril42e, 5 years ago.

Description

The get_raw_nr command is described in the ubasic tutorial scratchpad, and the back-end seems ready to support it (constant TOKENIZER_GET_RAW_NR ok), but it is not set in the tokenizer.c file. I think only one line is missing:

tokenizer.c:115
+ {"get_raw_nr",              TOKENIZER_GET_RAW_NR},

Moreover it would be great to have a get_raw command to know if raw recording is enabled or not, and to be able to restore the state of the camera at the end of scripts that change this... I've looked into the source code and it seems easy to do, I will try to compile CHDK myself and then submit a patch if nobody did it before ;-).

1 2 3 4 5 6 7 8 9 10 11 12 13
Note: See TracQuery for help on using queries.