Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove extraneous line that came from menu_scroll.c |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ed161d41794c3a10a317078a3b18b36b |
User & Date: | base@atomicules.co.uk 2013-08-31 07:47:35 |
Context
2013-08-31
| ||
07:50 |
Try to standardise on a string length
Since it doesn't matter if it's longer. | |
07:47 | Remove extraneous line that came from menu_scroll.c check-in: ed161d4179 user: base@atomicules.co.uk tags: origin/master, trunk | |
2013-08-29
| ||
23:24 |
Implement functionality to calc req'd and then sel nearest match in menu
So far only implemented on Shutter menu, i.e. have to select ISO and In order to do that added these two functions: - nearest_match The latter needed, because need to convert "1/1000", etc into float. For Seems to work for Sunny 16. check-in: 6513b427e7 user: base@atomicules.co.uk tags: origin/master, trunk | |
Changes
Changes to exposurses.c.
1 2 3 4 5 6 7 | /* This file based on menu_scroll.c from: http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/intro.html */ #include <curses.h> #include <menu.h> #include <math.h> #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /* This file based on menu_scroll.c from: http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/intro.html */ #include <curses.h> #include <menu.h> #include <math.h> #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) char *iso_array[] = { "50", "100", "200", "400", "800", |
︙ | ︙ |