Merge branch 'bugfix/rmt_tx_cmd' into 'master'

example(rmt): tx cmd without negative coding

See merge request idf/esp-idf!1884
This commit is contained in:
Jiang Jiang Jian 2018-05-16 17:39:04 +08:00
commit 8128dd245d

View file

@ -338,7 +338,7 @@ static void rmt_example_nec_tx_task()
int i, offset = 0;
while(1) {
//To build a series of waveforms.
i = nec_build_items(channel, item + offset, item_num - offset, ((~addr) << 8) | addr, cmd);
i = nec_build_items(channel, item + offset, item_num - offset, ((~addr) << 8) | addr, ((~cmd) << 8) | cmd);
if(i < 0) {
break;
}