File: TODO

package info (click to toggle)
pcscada 0.7.7-10
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 460 kB
  • sloc: ada: 3,292; makefile: 71; sh: 18
file content (19 lines) | stat: -rw-r--r-- 918 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
PCSC/Ada TODO List
==================

- Improve / optimize Set operations, add unit tests for all set operations.
- Add preferred protocols to SCard.Connect procedure
- Support 'or' operation for SCard.Connect preferred protocols
- Add default options or null/empty types for in params.
- Improve SCard.Transmit and corresponding buffer handling.
  * Remove Recv_Len param.
  * Allocate memory for buffer inside the binding, client does not
    know the required size before the call returns.
  * For that we need Handles and Free() procedures.
- Provide To_Byte_Set function which returns a Byte_Set from a String.
  * e.g. "16 3B 12 28"
- Use 'private with' for PCSC.Thin in thick binding.
  * A thick binding type for Thin.Byte is needed.
- Add proper error handling to Reader_Monitor task.
- Avoid nested functions / procedures: GCC implements them using trampolines,
  which requires the stack to be executable.