Commit f40dbda7 authored by Lucas Russo's avatar Lucas Russo

sm_io/*/trigger_iface/*: fix wrong TRANSM/RCV_LEN limits

parent b6ec41f4
......@@ -72,7 +72,7 @@ RW_PARAM_FUNC(trigger_iface, transm_count_rst) {
NO_FMT_FUNC, SET_FIELD);
}
#define BPM_TRIGGER_IFACE_RCV_LEN_MIN ((1 << 8) -1) /* Receiver Debounce Length */
#define BPM_TRIGGER_IFACE_RCV_LEN_MIN 0 /* Receiver Debounce Length */
#define BPM_TRIGGER_IFACE_RCV_LEN_MAX ((1 << 8) -1) /* Receiver Debounce Length */
RW_PARAM_FUNC(trigger_iface, rcv_len) {
SET_GET_PARAM_CHANNEL(trigger_iface, WB_TRIGGER_IFACE_RAW_REG_OFFS, WB_TRIG_IFACE,
......@@ -81,7 +81,7 @@ RW_PARAM_FUNC(trigger_iface, rcv_len) {
NO_FMT_FUNC, SET_FIELD);
}
#define BPM_TRIGGER_IFACE_TRANSM_LEN_MIN ((1 << 8) -1) /* Receiver Debounce Length */
#define BPM_TRIGGER_IFACE_TRANSM_LEN_MIN 0 /* Receiver Debounce Length */
#define BPM_TRIGGER_IFACE_TRANSM_LEN_MAX ((1 << 8) -1) /* Receiver Debounce Length */
RW_PARAM_FUNC(trigger_iface, transm_len) {
SET_GET_PARAM_CHANNEL(trigger_iface, WB_TRIGGER_IFACE_RAW_REG_OFFS, WB_TRIG_IFACE,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment