Skip to content

Commit

Permalink
libbladeRF: Fixed bad FPGA identification (Issue #68)
Browse files Browse the repository at this point in the history
Thank you, jmichelp, for tracking this down!
  • Loading branch information
jynik committed Aug 31, 2013
1 parent d9b0a8c commit 4f5f715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host/libraries/libbladeRF/src/bladerf_priv.c
Expand Up @@ -295,7 +295,7 @@ int bladerf_get_and_cache_fpga_size(struct bladerf *device)
if (!strcmp("40", tmp)) {
device->fpga_size = BLADERF_FPGA_40KLE;
} else if(!strcmp("115", tmp)) {
device->fpga_size = BLADERF_FPGA_40KLE;
device->fpga_size = BLADERF_FPGA_115KLE;
} else {
device->fpga_size = BLADERF_FPGA_UNKNOWN;
}
Expand Down

0 comments on commit 4f5f715

Please sign in to comment.