My point is... If this is a Prusa clone, and it is running the Prusa firmware... That is Marlin. It will be a modified version of Marlin. But it is Marlin.
If what I'm saying is true, you should be able to grab the Configuration.h file from their repository. But here might be another way to get that information:
In the LCD Menus... If they have enabled the LCD_INFO_MENU in the firmware build... You can go look at the board and thermistor information:
```
#if ENABLED(LCD_INFO_MENU)
#if ENABLED(PRINTCOUNTER)
void lcd_info_stats_menu();
#endif
void lcd_info_thermistors_menu();
void lcd_info_board_menu();
void lcd_info_menu();
#endif // LCD_INFO_MENU
```
If what I'm saying is true, you should be able to grab the Configuration.h file from their repository. But here might be another way to get that information:
In the LCD Menus... If they have enabled the LCD_INFO_MENU in the firmware build... You can go look at the board and thermistor information:
```
#if ENABLED(LCD_INFO_MENU)
#if ENABLED(PRINTCOUNTER)
void lcd_info_stats_menu();
#endif
void lcd_info_thermistors_menu();
void lcd_info_board_menu();
void lcd_info_menu();
#endif // LCD_INFO_MENU
```