aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndrew Hannam <andrewh@inmarket.com.au>2013-04-20 04:07:57 -0700
committerAndrew Hannam <andrewh@inmarket.com.au>2013-04-20 04:07:57 -0700
commitdc85ef79aa520e000f15dfb5d781ce0a86babd0b (patch)
tree92a9f37aeef2468be6eeaa56111603de9e88d6f4 /include
parent5412fa559673f46cdec652068eaaddcbb6271779 (diff)
parent86b35d641d44b4d89ba279a947d42fb8680feadc (diff)
downloaduGFX-dc85ef79aa520e000f15dfb5d781ce0a86babd0b.tar.gz
uGFX-dc85ef79aa520e000f15dfb5d781ce0a86babd0b.tar.bz2
uGFX-dc85ef79aa520e000f15dfb5d781ce0a86babd0b.zip
Merge pull request #27 from Tectu/master
Merge Tectu Changes
Diffstat (limited to 'include')
-rw-r--r--include/gadc/lld/gadc_lld.h11
-rw-r--r--include/gaudin/lld/gaudin_lld.h8
-rw-r--r--include/ginput/lld/mouse.h2
3 files changed, 20 insertions, 1 deletions
diff --git a/include/gadc/lld/gadc_lld.h b/include/gadc/lld/gadc_lld.h
index d32928c1..dc111990 100644
--- a/include/gadc/lld/gadc_lld.h
+++ b/include/gadc/lld/gadc_lld.h
@@ -70,7 +70,18 @@ typedef struct GadcLldNonTimerData_t {
* @notapi
* @{
*/
+
+/**
+ * @param[in] adcp The ADC driver
+ * @param[in] buffer The sample buffer
+ * @param[in] n The amount of samples
+ */
extern void GADC_ISR_CompleteI(ADCDriver *adcp, adcsample_t *buffer, size_t n);
+
+/**
+ * @param[in] adcp The ADC driver
+ * @param[in] err ADC error
+ */
extern void GADC_ISR_ErrorI(ADCDriver *adcp, adcerror_t err);
/**
* @}
diff --git a/include/gaudin/lld/gaudin_lld.h b/include/gaudin/lld/gaudin_lld.h
index 0a4bce3d..6512c61c 100644
--- a/include/gaudin/lld/gaudin_lld.h
+++ b/include/gaudin/lld/gaudin_lld.h
@@ -61,7 +61,13 @@ typedef struct gaudin_params_t {
*
* @{
*/
+
+/**
+ * @param[in] buffer The buffer
+ * @param[in] n The amount of samples
+ * */
extern void GAUDIN_ISR_CompleteI(audin_sample_t *buffer, size_t n);
+
extern void GAUDIN_ISR_ErrorI(void);
/**
* @}
@@ -78,6 +84,8 @@ extern "C" {
/**
* @brief Initialise the driver
*
+ * @param[in] paud Initialisation parameters
+ *
* @api
*/
void gaudin_lld_init(const gaudin_params *paud);
diff --git a/include/ginput/lld/mouse.h b/include/ginput/lld/mouse.h
index 05de28bf..046a06b1 100644
--- a/include/ginput/lld/mouse.h
+++ b/include/ginput/lld/mouse.h
@@ -166,7 +166,7 @@ extern "C" {
* @note This routine is provided to low level drivers by the high level code
* @note Particularly useful if GINPUT_MOUSE_POLL_PERIOD = TIME_INFINITE
*
- * @icode
+ * @iclass
* @notapi
*/
void ginputMouseWakeupI(void);