forked from Hay1tsme/segatools
This PR adds everything that's needed on the segatools side to add E-Money support regarding Thinca authentication cards. I've also included set-up documentation (with a network side bonus which was as far as I could figure out so far, but I'm pretty certain no more changes to segatools will be needed) Due to the nature of a custom protcol called TCAP that Thinca uses for networking (see docs), I can't fully test that everything works as I haven't yet bothered to figure that protocol out. Tested with both APMv3 and FGO.  Reviewed-on: #35 Co-authored-by: Haruka <haruka@noreply.gitea.tendokyu.moe> Co-committed-by: Haruka <haruka@noreply.gitea.tendokyu.moe>
81 lines
2.0 KiB
Meson
81 lines
2.0 KiB
Meson
option('log_all',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enables all of the subsequent debug logging options'
|
|
)
|
|
option('log_jvs',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for JVS'
|
|
)
|
|
option('log_io3',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for JVS'
|
|
)
|
|
option('log_led15070',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the 15070 LED board emulation'
|
|
)
|
|
option('log_led15093',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the 15093 LED board emulation'
|
|
)
|
|
option('log_nfc',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for NFC'
|
|
)
|
|
option('log_carol_control_bd',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the Carlo Control Board'
|
|
)
|
|
option('log_carol_led_bd',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the Carlo LED Board'
|
|
)
|
|
option('log_carol_touch',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the Carlo Touchscreen'
|
|
)
|
|
option('log_mai2_touch',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the mai2 TouchPanel'
|
|
)
|
|
option('log_chuni_slider',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the Chunithm Slider'
|
|
)
|
|
option('log_chusan_slider',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the Chusan Slider'
|
|
)
|
|
option('log_diva_slider',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the Diva Slider'
|
|
)
|
|
option('log_mercury_slider',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for the WACCA Slider'
|
|
)
|
|
option('log_clock',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for clock APIs'
|
|
)
|
|
option('log_vfs',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable debug logging for file system redirections'
|
|
)
|