want to define an array of AT commands and store in and get response in psoc

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Rach_4524011
Level 2
Level 2

want to define an array of AT commands and store in and get response in psoc and get respone of what i send.

want to store the at commands in the array and get response

0 Likes
1 Solution
MotooTanaka
Level 9
Level 9
Distributor - Marubun (Japan)
First comment on blog Beta tester First comment on KBA

Hi,

Please see the last response of mine there

UART RX INTERRUPT PROGRAM FOR CY8CKIT 49

moto

View solution in original post

0 Likes
3 Replies
MotooTanaka
Level 9
Level 9
Distributor - Marubun (Japan)
First comment on blog Beta tester First comment on KBA

Hi,

Could you see my sample in the following discussion

UART_PutString() not sending entire string. Unable to determine cause.

You can add as many commands as you like (as far as the memory allows)

and let the function in the second argument take care of it

==================

f_list_type func_list[] = {

    { "help",  do_help,  "show help message"},

    { "lough", do_lough, "let MCU lough"},

    { 0,       0,        0 }

} ;

==================

moto

0 Likes

BUT I WANT TWO UARTS IN THIS AND YOU HAVE ONLY USED 1 UART

0 Likes
MotooTanaka
Level 9
Level 9
Distributor - Marubun (Japan)
First comment on blog Beta tester First comment on KBA

Hi,

Please see the last response of mine there

UART RX INTERRUPT PROGRAM FOR CY8CKIT 49

moto

0 Likes