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.
Dependencies: mcp2515 mbed-dev-f303
DATA_PC/data_pc.h@0:d80c66cb1b3a, 2020-11-10 (annotated)
- Committer:
- panzhan
- Date:
- Tue Nov 10 09:09:58 2020 +0000
- Revision:
- 0:d80c66cb1b3a
panzhan_main_controller_copy2
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| panzhan | 0:d80c66cb1b3a | 1 | #ifndef _DATA_PC_H |
| panzhan | 0:d80c66cb1b3a | 2 | #define _DATA_PC_H |
| panzhan | 0:d80c66cb1b3a | 3 | |
| panzhan | 0:d80c66cb1b3a | 4 | #include "mbed.h" |
| panzhan | 0:d80c66cb1b3a | 5 | |
| panzhan | 0:d80c66cb1b3a | 6 | extern Serial pc; // tx, rx U2 min |
| panzhan | 0:d80c66cb1b3a | 7 | |
| panzhan | 0:d80c66cb1b3a | 8 | extern int pc_control; // 命令帧标志位 |
| panzhan | 0:d80c66cb1b3a | 9 | //extern unsigned int flag_A, flag_B; |
| panzhan | 0:d80c66cb1b3a | 10 | //extern unsigned int pc_num; |
| panzhan | 0:d80c66cb1b3a | 11 | |
| panzhan | 0:d80c66cb1b3a | 12 | //extern uint16_t phase_flag_get[1]; |
| panzhan | 0:d80c66cb1b3a | 13 | extern uint16_t phase_flag_use[1]; |
| panzhan | 0:d80c66cb1b3a | 14 | extern unsigned int phase_flag; |
| panzhan | 0:d80c66cb1b3a | 15 | |
| panzhan | 0:d80c66cb1b3a | 16 | void pc_decode(); |
| panzhan | 0:d80c66cb1b3a | 17 | void pc_clear(); |
| panzhan | 0:d80c66cb1b3a | 18 | void serial_pc_isr(); |
| panzhan | 0:d80c66cb1b3a | 19 | |
| panzhan | 0:d80c66cb1b3a | 20 | #endif |