aboutsummaryrefslogtreecommitdiff
path: root/src/include/target.h
diff options
context:
space:
mode:
authorGareth McMullin2012-06-18 20:27:06 +1200
committerGareth McMullin2012-06-18 20:27:06 +1200
commitbc7e7d21128f8aaac4d2b6191bfd904fe76f7deb (patch)
treedf1f9e706b163ad3ae9df019fd6514523890d046 /src/include/target.h
parentbc5a6f022bf926353d09c3c1b69ddf05ee353edf (diff)
Removed target header files containing a single prototype.
Target probe prototypes are all in target.h now.
Diffstat (limited to 'src/include/target.h')
-rw-r--r--src/include/target.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/include/target.h b/src/include/target.h
index 5630b93..6f97950 100644
--- a/src/include/target.h
+++ b/src/include/target.h
@@ -176,5 +176,14 @@ typedef struct target_s {
extern target *target_list, *cur_target, *last_target;
+/* Probe for various targets.
+ * Actual functions implemented in their respective drivers.
+ */
+int cortexm_probe(struct target_s *target);
+int stm32f1_probe(struct target_s *target);
+int stm32f4_probe(struct target_s *target);
+int lmi_probe(struct target_s *target);
+int lpc11xx_probe(struct target_s *target);
+
#endif