Downlink packets get dropped in the gateway

Hi All,

I’m a little late to the party but I fixed a similar issue by adding a new region case to the /src/s2e.c J_REGION switch of the basicstation repo.
In my case of Singapore 8 Band I needed to add the region CRC 0xD653976B above line 1006 as a fall-through case

case ((ujcrc_t) 0xD653976B): // CRC obtained by debugging region variable
case J_AS923JP: { // non-std obsolete naming
        region = J_AS923_1;
        region_s = "AS923-1";
        // FALL THRU
}

https://github.com/lorabasics/basicstation/blob/master/src/s2e.c

Best of Luck,
Tucker

1 Like