doc: Add documentation for various ser_ specific functions
authorlottaviano <lottaviano@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 29 Mar 2010 21:06:33 +0000 (21:06 +0000)
committerlottaviano <lottaviano@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 29 Mar 2010 21:06:33 +0000 (21:06 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3308 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/drv/ser.c

index dac277b06da4bcb01bf5c48acd60efe8c81cdaa1..4a2c923d1971729cf67ff31b74b18bb59e50c969 100644 (file)
@@ -256,12 +256,18 @@ void ser_settimeouts(struct Serial *fd, mtime_t rxtimeout, mtime_t txtimeout)
 #endif /* CONFIG_SER_RXTIMEOUT || CONFIG_SER_TXTIMEOUT */
 
 
+/**
+ * Set the baudrate for the serial port
+ */
 void ser_setbaudrate(struct Serial *fd, unsigned long rate)
 {
        fd->hw->table->setBaudrate(fd->hw, rate);
 }
 
 
+/**
+ * Set the parity for the \a fd serial port
+ */
 void ser_setparity(struct Serial *fd, int parity)
 {
        fd->hw->table->setParity(fd->hw, parity);