diff options
author | Damien George <damien.p.george@gmail.com> | 2014-09-26 00:56:45 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-09-26 00:56:45 +0100 |
commit | f996d8854f0cdd88446a8a369e1b330c14ea3eb7 (patch) | |
tree | 3cd5949d155bc412e4b28b8c47bb9cd19e51fd0c /drivers/cc3000/inc/patch_prog.h | |
parent | 55a5b807937a4be8d57153970d723bc31113b6d4 (diff) | |
download | micropython-f996d8854f0cdd88446a8a369e1b330c14ea3eb7.tar.gz micropython-f996d8854f0cdd88446a8a369e1b330c14ea3eb7.zip |
drivers, cc3k: Move cc3000 driver from stmhal to drivers directory.
Diffstat (limited to 'drivers/cc3000/inc/patch_prog.h')
-rw-r--r-- | drivers/cc3000/inc/patch_prog.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/cc3000/inc/patch_prog.h b/drivers/cc3000/inc/patch_prog.h new file mode 100644 index 0000000000..2dd0985446 --- /dev/null +++ b/drivers/cc3000/inc/patch_prog.h @@ -0,0 +1,11 @@ +#ifndef __PATCH_PROG_H__ +#define __PATCH_PROG_H__ +extern unsigned short fw_length; +extern const unsigned char fw_patch[]; + +extern unsigned short drv_length; +extern const unsigned char wlan_drv_patch[]; +extern const unsigned char cRMdefaultParams[128]; + +void patch_prog_start(); +#endif //__PATCH_PROG_H__ |