aboutsummaryrefslogtreecommitdiff
path: root/src/include/target.h
diff options
context:
space:
mode:
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