2018-12-13から1日間の記事一覧

"2-wire, 4-phase"、"across adj boundary between A and B"

http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.100241_0001_00_en/zsu1423532333203.html コアとシステムとで電圧が違っていても動作周波数が違っていても互いに信号をやりとりするのに使える~ across adj boundary between A and B. AとB…

フォーミュラノードとXYグラフとによる波形生成 / 列挙体とスイッチ文とを組み合わせて波形が選べるようにする

WaveformSimulator_2.vi - Google ドライブ ―――――――――――――――――――――――――― Cの列挙型と同じ。 #include <iostream> using namespace std; enum sute{a = -10, b, c, d = 100, e, f}; int main(){ cout << sute::a << endl; cout << sute::b << endl; cout << sute::c << </iostream>…