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.
fpga.h@0:ecd925601fc6, 2018-11-23 (annotated)
- Committer:
- takeru0x1103
- Date:
- Fri Nov 23 07:27:43 2018 +0000
- Revision:
- 0:ecd925601fc6
- Child:
- 8:1ca49cb18290
????????????????????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
takeru0x1103 | 0:ecd925601fc6 | 1 | #ifndef _FPGA_H_ |
takeru0x1103 | 0:ecd925601fc6 | 2 | #define _FPGA_H_ |
takeru0x1103 | 0:ecd925601fc6 | 3 | ///////////////////////////////////////////////////////////////////// |
takeru0x1103 | 0:ecd925601fc6 | 4 | #include "typedef.h" |
takeru0x1103 | 0:ecd925601fc6 | 5 | |
takeru0x1103 | 0:ecd925601fc6 | 6 | void fpgaInit(); |
takeru0x1103 | 0:ecd925601fc6 | 7 | UINT16 fpgaTest(); //テストレジスタ |
takeru0x1103 | 0:ecd925601fc6 | 8 | UINT16 fpgaGetRpm(bool frontFlg); //エンジン回転数読み取り |
takeru0x1103 | 0:ecd925601fc6 | 9 | UINT16 fpgaUserSw(); //ユーザースイッチ読み取り |
takeru0x1103 | 0:ecd925601fc6 | 10 | |
takeru0x1103 | 0:ecd925601fc6 | 11 | void fpgaSubProp(UCHAR iPos //位置 0:前左 1:前右 2:後左 3:後右 |
takeru0x1103 | 0:ecd925601fc6 | 12 | ,UCHAR iSlotl //スロットル設定値 |
takeru0x1103 | 0:ecd925601fc6 | 13 | ); |
takeru0x1103 | 0:ecd925601fc6 | 14 | |
takeru0x1103 | 0:ecd925601fc6 | 15 | ///////////////////////////////////////////////////////////////////// |
takeru0x1103 | 0:ecd925601fc6 | 16 | #endif |