-
Notifications
You must be signed in to change notification settings - Fork 104
Task List
biot edited this page Dec 9, 2014
·
281 revisions
The first place to look for open tasks that you can help with is the Issues List.
The following list will be removed once everything is moved to the Issues List, completed, or obsolete. If you are interested in helping with any of these tasks, coordinate with the person in parentheses. Try IRC first freenode channel #hydrabus, then email.
###Work In Progress:
- G Frequency generator/PWM (bvernoux)
- d Generate DAC output from 0 to 3.3V (value from 0 to 255) (bvernoux)
- New feature: "logging [filename]" & "logging off" to log everything from the terminal in & out to a sd card file (automatic name like logX.txt with X=0 at start incremented each time a new logon is called) log is stopped/flushed when calling "logoff" (Bert)
###TODO
- Implement basic stack overflow/underflow check with canaries between each stack (probably need chibios patch)
- Implement advanced stack overflow/underflow protection using M4F MPU
- add help syntax for each group of command
- For ADC example:
- Configuration:
adc <adctype (adc1 tempsensor vrefint vbat)> [<period (nb ms)>] - Interaction:
adc [<samples> <nb samples>] [<continuous>]
- Configuration:
- For GPIO example:
- Configuration:
gpio <string (gpio port)> [<mode (in/out/open-drain)>] [<pull (up/down/floating)>] [<period (nb ms)>] - Interaction:
gpio [continuous] [<on/off>] <read value:repeat> [<continuous>]
- Configuration:
- For SPI example:
- Configuration:
spi [<device (1/2)] [<pull (up/down/floating)>] [<frequency (value hz/khz/mhz)>] - Interaction:
spi [<cs (on) OR "[">] [<cs (off) OR "]">] <read or write (value:repeat)>
- Configuration:
- For I2C example:
- Configuration:
i2c [<pull (up/down/floating)>] [<frequency (value hz/khz/mhz)>] - Interaction:
i2c [<start>] [<stop>] <read or write (value:repeat)>
- Configuration:
- For UART example:
- Configuration:
uart [<device (1/2)] [<speed (value in bauds)>] [<parity (none/even/odd)>] [<stop-bits (1/2)>] - Interaction:
uart <read or write (value:repeat)>
- Configuration:
- add wildcard "*" to read a group of ADC channels
- For ADC example:
- Implement Ctrl-C Abort which work like UBTN press to stop waiting.
- SD commands:
- New feature: Replay some terminal commands from a specified sd file, command name TBD
- SD driver:
- Implement correct detection & setting of high-speed microSD, in order to set frequency to 48MHz (instead of default 24MHz) => To be done in chibios driver or use stm32cube sdcard driver which have such feature.
- Extension using EEPROM for detection:
- Implement support of EEPROM extension detection with same hw & content as Beagle bone defined here https://github.com/jbdatko/eeprom_tutorial/blob/master/eeprom.md
- Add binary mode for SPI, I2C, UART on USB2 (dedicated to binary mode)
- All modes:
- Use freeform string as byte sequence, instead of freeform integers
- i2c:
- Slave mode
- Number of bits (7, 8, 10)
- spi:
- Number of bits (any number)
- Add utilities (like BusPirate):
- a/A/@ Control auxillary pin (low/HIGH/read)
- F Measure frequency (from 1282Hz to 84MHz, 128Hz to 8.4Mhz too, autorange ...)
- New modes:
- CAN, Parallel Bus (2 to 32bits) with mode sniffer, read and write (with option to log data in realtime to MicroSD) (depending on feedback)
- 1/2/3 Wire with mode sniffer, read and write (depending on feedback)
- Basic Scope up to 3.3V and up to 7.2MSPS/12bits
- USB 1.x/2.0 LS/FS sniffer mode (using special passthrough mode with logging directly to MicroSD) (depending on feedback)
- Other commands as defined in BusPirate menu (with some extensions/new features) (depending on feedback)
- Cleanup files trf7970a/src/trf797x.c & trf7970a/src/trf_spi.c and change license to Apache 2.0
- Sniffer:
- real-time write in SD card to sniff during ultra long session (limited by SD card file size and not by the internal 64KB buffer)
- add optional timestamp global and relative(between data) with at least 73.75ns resolution(for 13.56MHz)
- Mode for ISO14443B and ISO15693 or lot of other mode TBD (raw specific mode)
- Emulator mode (Card Emulation) is planned and lot of other modes TBD (like raw mode to modulate even proprietary protocol on 13.56MHz)
- Add new utilities:
- SPI for non intrusive sniffer for MISO/MOSI line (with support of /CS)
- I2C for non intrusive sniffer for SDA line (with support of /CS)
- I2C to search I2C device(s) address
- Multimeter up to 3.3V/7.2MSPS(12bits) with logging in µSD file in realtime.
###Development Environment:
- Tutorial for EmBlocks to load project and debug it (Windows only)
- Tutorial for Eclipse/ChibiStudio to load project and debug it (Windows only)
- Tutorial for Eclipse to load project and debug it (Linux)
###DONE common (please test):
- Exceptions management with stack dump and information on crash
- Implement a good core dump in case of crash
- SPI, UART, I2C modes
- v/V Measure from voltage probe (once/CONTINUOUS) (12bits) (work in progress)
- New "sd" commands: "rm", "mkdir"
- CHANGELOG
- Console commands
- Binary mode guide
-
NFC/HydraNFC v1 guide
- Read UID of an ISO/IEC_14443 Tag
- Read UID and data of a MIFARE Ultralight Tag
- Read UID of an ISO/IEC 15693 Tag
- Emul ISO14443a Tag
- Emul MIFARE Ultralight Tag
- Emul Mifare Classic Tag
- Unique NFC sniffer design
- Launch NFC sniffer from console
- Sniffer ISO14443A wireshark pcap
- Autonomous/stand-alone sniffer mode
- Sniffer ISO14443A real-time infinite trace mode
- HydraFW-HydraNFC-v1.x-TRF7970A-Tutorial