mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
a089aeb2bd
* Add Initial CCID support * Sync api symbols * Format sources Co-authored-by: あく <alleteam@gmail.com>
16 lines
294 B
Text
16 lines
294 B
Text
App(
|
|
appid="ccid_test",
|
|
name="CCID Debug",
|
|
apptype=FlipperAppType.DEBUG,
|
|
entry_point="ccid_test_app",
|
|
cdefines=["CCID_TEST"],
|
|
requires=[
|
|
"gui",
|
|
],
|
|
provides=[
|
|
"ccid_test",
|
|
],
|
|
stack_size=1 * 1024,
|
|
order=120,
|
|
fap_category="Debug",
|
|
)
|