Hi.
I am using the ATWINC1500 via RS232 and sent the start command:
A5 01 F2 00 00 0C 00 0C 00 61 2F 52 EF
And I get the following response:
(0)NO CORTUS app
(0)(M2M)DriverInfo: None. Assuming 19.3.0
(0)Chip ID = 1524b0
(0)Flash ID = b512302c, Size = 4 MBit
(10)EFUSE:MAC
(10)MAC_ADDR = 8F:F4:35:AB:8C:13
(10)Shared buff static: 0, 5, 5, 22, 9, 10
(20)NMI M2M SW VERSION 19.5.2 SVNREV 14274
(30)NMI MIN DRV VERSION 19.3.0
(30)Firmware SVN URL branches/WIFIIOT-1660_19_5_2_RC7
(30)Built at Jan 26 2017 22:13:34
(40)ROM LIB VER_2
(40)__AES_HW_ENGINE__
(40)(M2M)LOAD SEC
(50)(TLS)TLS Session Size= 1884
(70)PSM_OFF
But according to the document AT commands should get a response something similar to the following:
Response +OK+AT=AT:,FW:,ChipID:,RFRev
After the above, I send the "Check the AT Command Firmware" as follows:
case CHECK_AT_COMMAND_FIRMW:{ app_uart1.transmissionBuffer[0x00] = 'A'; app_uart1.transmissionBuffer[0x01] = 'T'; app_uart1.transmissionBuffer[0x02] = 0x0D; app_uart1.transmissionBuffer[0x03] = 0x0A; app_uart1.sizeToTransmit = 0x04; break; }
But there is no response from the module.
In advance any comments or suggestions are welcome.