add sddc source prototype + add new ATV decoder + fix windows builds

This commit is contained in:
AlexandreRouma
2025-04-23 04:49:45 +02:00
parent aa2b4b1c58
commit e75cc7be6f
24 changed files with 2412 additions and 310 deletions

View File

@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.13)
project(sddc_info)
# Get source files
file(GLOB_RECURSE SRC "src/*.cpp")
# Create executable
add_executable(${PROJECT_NAME} ${SRC})
# Link to librfnm
target_link_libraries(${PROJECT_NAME} PRIVATE sddc)
# Create install directive
install(TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR})

View File

@ -0,0 +1,35 @@
#include <stdio.h>
#include <sddc.h>
int main() {
// Set firmware image path for debugging
sddc_set_firmware_path("C:/Users/ryzerth/Downloads/SDDC_FX3 (1).img");
// List available devices
sddc_devinfo_t* devList;
int count = sddc_get_device_list(&devList);
if (count < 0) {
fprintf(stderr, "Failed to list devices: %d\n", count);
return -1;
}
else if (!count) {
printf("No device found.\n");
return 0;
}
// Show the devices in the list
for (int i = 0; i < count; i++) {
printf("Serial: %s\n", devList[i].serial);
printf("Hardware: %s\n", sddc_model_to_string(devList[i].model));
printf("Firmware: v%d.%d\n", devList[i].firmwareMajor, devList[i].firmwareMinor);
// Print separator if needed
if (i != count-1) {
printf("\n================================================\n\n");
}
}
// Free the device list and exit
sddc_free_device_list(devList);
return 0;
}