Skip to content
Snippets Groups Projects
Commit b58fa2df authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Change bit mask to allow for 10 channels.

parent cfb4f76b
No related branches found
No related tags found
No related merge requests found
......@@ -566,7 +566,7 @@ registers_set_one(uint8_t page, uint8_t offset, uint16_t value)
break;
case PX4IO_P_SETUP_DSM:
dsm_bind(value & 0x0f, (value >> 4) & 7);
dsm_bind(value & 0x0f, (value >> 4) & 0xF);
break;
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment