我正在尝试开发一个接口SPI,并且我已经从一个简单的配置开始。问题是SCK似乎工作得很好,但MOSI不工作。这是我的代码和我的测试逻辑测试器。
#include <stdlib.h>
#include <plib.h>
// example functions prototypes
int SpiDoMasterSlaveExample(int nCycles);
void SpiInitDevice(int chn, int isMaster, int frmEn, int frmMaster);
// some
我已经成功地将MATLAB与我的Arduino连接起来。到目前为止,我只向Arduino发送了一些简单的任务,比如digitalWrite等等。
我一直使用的代码如下:
%-- connect to the board
a = arduino('COM9')
%-- specify pin mode
a.pinMode(9,'output');
%-- write 0 (off) to pin 9
a.digitalWrite(9,0);
%-- dummy variable
on = false;
%-- simple loop to make L