Moved to Team 9.
Fork of LineScan by
LineScan.h@7:7d3b6edd783e, 2015-03-31 (annotated)
- Committer:
- ikrase
- Date:
- Tue Mar 31 23:34:18 2015 +0000
- Revision:
- 7:7d3b6edd783e
- Parent:
- 6:984ccef5ca19
- Child:
- 8:b9ec2f3e12b6
Test version with all telemetry commented out
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ng3600 | 0:2d546112b0b8 | 1 | #include "mbed.h" |
ng3600 | 0:2d546112b0b8 | 2 | #include "rtos.h" |
ikrase | 6:984ccef5ca19 | 3 | #include "telemetry-mbed.h" |
ng3600 | 0:2d546112b0b8 | 4 | |
ng3600 | 0:2d546112b0b8 | 5 | #define NUM_PIX 128 |
ng3600 | 0:2d546112b0b8 | 6 | |
ikrase | 1:f10ec868cd71 | 7 | /** Linescan functions (Nicholas Gan) |
ikrase | 1:f10ec868cd71 | 8 | * to capture linescan frames and process them. |
ikrase | 1:f10ec868cd71 | 9 | */ |
ikrase | 1:f10ec868cd71 | 10 | |
ng3600 | 0:2d546112b0b8 | 11 | uint16_t read1Bit(AnalogIn cam, DigitalOut *camClk); |
ng3600 | 0:2d546112b0b8 | 12 | void startRead(DigitalOut *camSi, DigitalOut *camClk); |
ng3600 | 3:f31986cb68fd | 13 | int processFn(uint16_t *array, int arraySz, int* exposure); |
ikrase | 7:7d3b6edd783e | 14 | int getLinePos(AnalogIn cam, DigitalOut *camSi, DigitalOut *camClk, int *exposure);// , telemetry::NumericArray<uint16_t, 128> &tele_linescan); |