Remove separators.

This commit is contained in:
László Monda
2017-06-15 19:29:15 +02:00
parent 237ef3c34a
commit 8d232f3968

View File

@@ -36,8 +36,6 @@ static const char *readString(serialized_buffer_t *buffer, uint16_t *len) {
}
*/
// ----------------
static void parseNoneAction(key_action_t *action, serialized_buffer_t *buffer) {
action->type = KeyActionType_None;
}
@@ -178,8 +176,6 @@ static void clearModule(uint8_t targetLayer, uint8_t moduleID) {
memset(&CurrentKeymap[targetLayer][moduleID], 0, MAX_KEY_COUNT_PER_MODULE * sizeof(key_action_t));
}
// ----------
void ParseLayer(const uint8_t *data, uint8_t targetLayer) {
serialized_buffer_t buffer;