Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of DDRO_Farrari by
Diff: scan.h
- Revision:
- 0:84a8bcfbdec9
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scan.h Mon Oct 07 22:58:19 2013 +0000 @@ -0,0 +1,25 @@ +#include "mbed.h" +#include "pinout.h" + +#ifndef SCAN_H +#define SCAN_H + +static char* scan_bits; +static char* scan_out; +static int scan_length; + +static int* scan_highs; +static int* scan_lows; +static char** scan_names; +static int scan_num_vars; + +void scan_clear(); +void scan_init(); +int get_var_idx(char* varname); +void set_scan_bits(char* varname, unsigned int value); +unsigned int get_scan_bits(char* varname); +void load_chip(); +void load_chain(); +void rotate_chain(); + +#endif \ No newline at end of file