summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/ata_sd_as3525.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/as3525/ata_sd_as3525.c')
-rw-r--r--firmware/target/arm/as3525/ata_sd_as3525.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/firmware/target/arm/as3525/ata_sd_as3525.c b/firmware/target/arm/as3525/ata_sd_as3525.c
index 828e025870..291b7cbef0 100644
--- a/firmware/target/arm/as3525/ata_sd_as3525.c
+++ b/firmware/target/arm/as3525/ata_sd_as3525.c
@@ -690,4 +690,28 @@ tCardInfo *card_get_info_target(int card_no)
690 return &card; 690 return &card;
691} 691}
692 692
693bool card_detect_target(void)
694{
695#ifdef HAVE_HOTSWAP
696 /* TODO */
697 return false;
698#else
699 return false;
700#endif
701}
702
703#ifdef HAVE_HOTSWAP
704void card_enable_monitoring_target(bool on)
705{
706 if (on)
707 {
708 /* TODO */
709 }
710 else
711 {
712 /* TODO */
713 }
714}
715#endif
716
693#endif /* BOOTLOADER */ 717#endif /* BOOTLOADER */