Technical Support
On-Line Manuals
µVision4 User's Guide (Japanese)
µVision4 では、I/O 入力の動作をシミュレートします。I/O ピンがカウンタ入力として設定された場合、ピンが切り替わると、カウンタ値は増加します。次の例に、カウンタ 3 の入力をシミュレートする方法を示します。
// in your C user program T3CON = 0x004B; // set T3 Counter Mode
VTREG PORT3(シグナル関数などを使用して)でカウンタ入力 P3.6 を切り替えることができます。
signal void ToggleT3Input (void) { while (1) { PORT3 = PORT3 ^ 0x0040; // toggle P3.6 twatch (CLOCK / 100000); // with 100kHz } }
ペリフェラルダイアログでカウンタ 3 ステータスを確認します。
ポートピンが割り込み入力として使用された場合、割り込み入力もシミュレートされます。関連付けられた I/O ピンを切り替えると、割り込み要求が設定されます。
Cookie Settings | Terms of Use | Privacy | Accessibility | Trademarks | Contact Us | Feedback
Copyright © 2005-2019 Arm Limited (or its affiliates). All rights reserved.
This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.
Change Settings
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers of your data.