This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS: implementation of JSON-RPC for C

Tool/software: Code Composer Studio

Hello everyone,

I need to configure and do read/write command to a temperature sensore via json_Rpc format. who knows how can i use Json format in C ambient?

I have to send this command to sensore:

>> {"jsonrpc": "2.0", "method": "prepareLog", "params": [0], "id": 1}
>> {"jsonrpc": "2.0", "method": "readLog", "params": [500], "id": 2}
>> {"jsonrpc": "2.0", "method": "ackLog", "params": [9], "id": 3}

How can i write this in my code ? Is there any library for that?