Doc fixes.
[bertos.git] / mware / xmodem.c
old mode 100755 (executable)
new mode 100644 (file)
index 9041b4c..030783d
-#error This module has not been revised for the API changes in several DevLib modules
-/*!
+/**
  * \file
  * <!--
- * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
+ * This file is part of BeRTOS.
+ *
+ * Bertos is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2004, 2005, 2006, 2007 Develer S.r.l. (http://www.develer.com/)
  * Copyright 1999, 2001 Bernardo Innocenti <bernie@develer.com>
- * This file is part of DevLib - See devlib/README for information.
+ *
  * -->
  * \brief X-Modem serial transmission protocol (implementation)
  *
- * Suppots the CRC-16 and 1K-blocks variants of the standard.
+ * Supports the CRC-16 and 1K-blocks variants of the standard.
  * \see ymodem.txt for the protocol description.
  *
- * \todo Decouple this code from the LCD, buzzer and timer drivers
- *       introducing user hooks or macros like CHECK_ABORT.
- *
  * \todo Break xmodem_send() and xmodem_recv() in smaller functions.
  *
- * \todo Add CONFIG_* vars to exclude either the receiver or the sender,
- *       to reduce the footprint for applications that don't need both.
- *
  * \todo Maybe convert drv/ser.c to the KFile interface for symmetry and
  *       flexibility.
  *
  * \version $Id$
  * \author Bernardo Innocenti <bernie@develer.com>
+ * \author Francesco Sacchi <batt@develer.com>
  */
 
-/*
- * $Log$
- * Revision 1.6  2004/08/15 05:31:46  bernie
- * Add an #error to spread some FUD about the quality of this module;
- * Add a few TODOs from Rasky's review;
- * Update to the new drv/ser.c API;
- * Move FlushSerial() to drv/ser.c and generalize.
- *
- * Revision 1.5  2004/08/12 23:46:21  bernie
- * Remove extra indentation level in switch statements.
- *
- * Revision 1.4  2004/08/12 23:35:50  bernie
- * Replace a handmade loop with memset().
- *
- * Revision 1.3  2004/08/12 23:34:36  bernie
- * Replace if/else with continue to reduce indentation level.
- *
- * Revision 1.2  2004/08/12 23:24:07  bernie
- * Rename UPDCRC() to UPDCRC16().
- *
- * Revision 1.1  2004/08/11 19:54:22  bernie
- * Import XModem protocol into DevLib.
- *
- */
 
 #include "xmodem.h"
 
+#include <appconfig.h>
+#include <string.h> /* for memset() */
 #include <drv/ser.h>
-#include <drv/lcd.h>
-#include <drv/buzzer.h>
-#include <mware/crc.h>
-#include <mware/kfile.h>
+#include <algo/crc.h>
+#include <cfg/debug.h>
 
-#include <string.h> /* for memset() */
 
 
-/*!
+
+/**
  * \name Protocol control codes
  * \{
  */
-#define XM_SOH  0x01  /*!< Start Of Header (128-byte block) */
-#define XM_STX  0x02  /*!< Start Of Header (1024-byte block) */
-#define XM_EOT  0x04  /*!< End Of Transmission */
-#define XM_ACK  0x06  /*!< Acknowledge block */
-#define XM_NAK  0x15  /*!< Negative Acknowledge */
-#define XM_C    0x43  /*!< Request CRC-16 transmission */
-#define XM_CAN  0x18  /*!< CANcel transmission */
+#define XM_SOH  0x01  /**< Start Of Header (128-byte block) */
+#define XM_STX  0x02  /**< Start Of Header (1024-byte block) */
+#define XM_EOT  0x04  /**< End Of Transmission */
+#define XM_ACK  0x06  /**< Acknowledge block */
+#define XM_NAK  0x15  /**< Negative Acknowledge */
+#define XM_C    0x43  /**< Request CRC-16 transmission */
+#define XM_CAN  0x18  /**< CANcel transmission */
 /*\}*/
 
-#define XM_MAXRETRIES     15  /*!< Max retries before giving up */
-#define XM_MAXCRCRETRIES   7  /*!< Max retries before switching to BCC */
-#define XM_BUFSIZE      1024  /*!< Size of block buffer */
-
+#define XM_MAXRETRIES     15  /**< Max retries before giving up */
+#define XM_MAXCRCRETRIES   7  /**< Max retries before switching to BCC */
 
-#if (ARCH & ARCH_BOOT)
-       #include "kbdhw.h"
-       #if (ARCH & ARCH_SLIM)
-               #define CHECK_ABORT             KEYPRESSED_STOP
-       #elif (ARCH & ARCH_SARF)
-               #define CHECK_ABORT             KEYPRESSED_ESC
-       #endif
+#if CONFIG_XMODEM_1KCRC == 1
+       #define XM_BUFSIZE       1024  /**< 1024 bytes of block buffer */
 #else
-       #include "kbd.h"
-       #if (ARCH & ARCH_SLIM)
-               #define CHECK_ABORT             (kbd_getchar() == K_STOP)
-       #elif (ARCH & ARCH_SARF)
-               #define CHECK_ABORT             (kbd_getchar() == K_ESC)
-       #endif
-#endif /* ARCH_BOOT */
+       #define XM_BUFSIZE       128   /**< 128 bytes of block buffer */
+#endif
 
 
-/*! Buffer to hold a block of data */
-static char block_buffer[XM_BUFSIZE];
-
-
-/*!
- * Decode serial driver errors and print them on the display.
- */
-static void print_serial_error(struct Serial *port, int retries)
-{
-       serstatus_t err, status;
-
-       /* Get serial error code and reset it */
-       status = ser_getstatus(port);
-       ser_setstatus(port, 0);
-
-       /* Mostra tutti gli errori in sequenza */
-       for (err = 0; status != 0; status >>= 1, err++)
-       {
-               /* Se il bit dell'errore e' settato */
-               if (status & 1)
-               {
-                       lcd_printf(0, 3, LCD_FILL, "%s %d", serial_errors[err], retries);
-                       buz_beep(200);
-                       timer_delay(500);
-               }
-       }
-}
-
-/*!
+#if CONFIG_XMODEM_RECV
+/**
  * \brief Receive a file using the XModem protocol.
  *
  * \param port Serial port to use for transfer
  * \param fd Destination file
  *
- * \note This function allocates a large amount of stack (>1KB).
+ * \note This function allocates a large amount of stack (\see XM_BUFSIZE).
  */
 bool xmodem_recv(struct Serial *port, KFile *fd)
 {
+       char block_buffer[XM_BUFSIZE]; /* Buffer to hold a block of data */
        int c, i, blocksize;
        int blocknr = 0, last_block_done = 0, retries = 0;
        char *buf;
@@ -144,20 +101,18 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
        bool usecrc = true;
 
 
-       lcd_printf(0, 2, LCD_FILL, "Starting Transfer...");
-       lcd_clear();
+       XMODEM_PROGRESS("Starting Transfer...\n");
        purge = true;
-       ser_settimeouts(port, SER_DEFRXTIMEOUT, SER_DEFTXTIMEOUT);
        ser_setstatus(port, 0);
 
        /* Send initial NAK to start transmission */
        for(;;)
        {
-               if (CHECK_ABORT)
+               if (XMODEM_CHECK_ABORT)
                {
                        ser_putchar(XM_CAN, port);
                        ser_putchar(XM_CAN, port);
-                       lcd_printf(0, 2, LCD_FILL, "Transfer aborted");
+                       XMODEM_PROGRESS("Transfer aborted\n");
                        return false;
                }
 
@@ -169,8 +124,8 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
                {
                        purge = false;
 
-                       if (ser_getstatus())
-                               SerialError(retries);
+                       if (ser_getstatus(port))
+                               XMODEM_PROGRESS("Retries %d\n", retries);
 
                        ser_resync(port, 200);
                        retries++;
@@ -179,7 +134,7 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
                        {
                                ser_putchar(XM_CAN, port);
                                ser_putchar(XM_CAN, port);
-                               lcd_printf(0, 2, LCD_FILL, "Transfer aborted");
+                               XMODEM_PROGRESS("Transfer aborted\n");
                                return false;
                        }
 
@@ -188,14 +143,14 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
                        {
                                if (retries < XM_MAXCRCRETRIES)
                                {
-                                       lcd_printf(0, 2, LCD_FILL, "Request Tx (CRC)");
+                                       XMODEM_PROGRESS("Request Tx (CRC)\n");
                                        ser_putchar(XM_C, port);
                                }
                                else
                                {
                                        /* Give up with CRC and fall back to checksum */
                                        usecrc = false;
-                                       lcd_printf(0, 2, LCD_FILL, "Request Tx (BCC)");
+                                       XMODEM_PROGRESS("Request Tx (BCC)\n");
                                        ser_putchar(XM_NAK, port);
                                }
                        }
@@ -205,13 +160,16 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
 
                switch (ser_getchar(port))
                {
+               #if XM_BUFSIZE >= 1024
                case XM_STX:  /* Start of header (1024-byte block) */
                        blocksize = 1024;
                        goto getblock;
+               #endif
 
                case XM_SOH:  /* Start of header (128-byte block) */
                        blocksize = 128;
-
+                       /* Needed to avoid warning if XM_BUFSIZE < 1024 */
+                       goto getblock;
                getblock:
                        /* Get block number */
                        c = ser_getchar(port);
@@ -219,7 +177,7 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
                        /* Check complemented block number */
                        if ((~c & 0xff) != ser_getchar(port))
                        {
-                               lcd_printf(0, 3, LCD_FILL, "Bad blk (%d)", c);
+                               XMODEM_PROGRESS("Bad blk (%d)\n", c);
                                purge = true;
                                break;
                        }
@@ -227,14 +185,14 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
                        /* Determine which block is being sent */
                        if (c == (blocknr & 0xff))
                                /* Last block repeated */
-                               lcd_printf(0, 2, LCD_FILL, "Repeat blk %d", blocknr);
+                               XMODEM_PROGRESS("Repeat blk %d\n", blocknr);
                        else if (c == ((blocknr + 1) & 0xff))
                                /* Next block */
-                               lcd_printf(0, 2, LCD_FILL, "Recv blk %d", ++blocknr);
+                               XMODEM_PROGRESS("Recv blk %d\n", ++blocknr);
                        else
                        {
                                /* Sync lost */
-                               lcd_printf(0, 3, LCD_FILL, "Sync lost (%d/%d)", c, blocknr);
+                               XMODEM_PROGRESS("Sync lost (%d/%d)\n", c, blocknr);
                                purge = true;
                                break;
                        }
@@ -285,7 +243,7 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
 
                                if (crc)
                                {
-                                       lcd_printf(0, 3, LCD_FILL, "Bad CRC: %04x", crc);
+                                       XMODEM_PROGRESS("Bad CRC: %04x\n", crc);
                                        purge = true;
                                        break;
                                }
@@ -293,7 +251,7 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
                        /* Compare the checksum */
                        else if (c != checksum)
                        {
-                               lcd_printf(0, 3, LCD_FILL, "Bad sum: %04x/%04x", checksum, c);
+                               XMODEM_PROGRESS("Bad sum: %04x/%04x\n", checksum, c);
                                purge = true;
                                break;
                        }
@@ -324,7 +282,7 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
 
                case XM_EOT:    /* End of transmission */
                        ser_putchar(XM_ACK, port);
-                       lcd_printf(0, 2, LCD_FILL, "Transfer completed");
+                       XMODEM_PROGRESS("Transfer completed\n");
                        return true;
 
                case EOF: /* Timeout or serial error */
@@ -332,64 +290,71 @@ bool xmodem_recv(struct Serial *port, KFile *fd)
                        break;
 
                default:
-                       lcd_printf(0, 3, LCD_FILL, "Skipping garbage");
+                       XMODEM_PROGRESS("Skipping garbage\n");
                        purge = true;
                        break;
                }
        } /* End forever */
 }
+#endif
 
 
-/*!
- * \brief Transmit a file using the XModem protocol.
+#if CONFIG_XMODEM_SEND
+/**
+ * \brief Transmit some data using the XModem protocol.
  *
  * \param port Serial port to use for transfer
  * \param fd Source file
  *
  * \note This function allocates a large amount of stack for
- *       the XModem transfer buffer (1KB).
+ *       the XModem transfer buffer (\see XM_BUFSIZE).
  */
 bool xmodem_send(struct Serial *port, KFile *fd)
 {
+       char block_buffer[XM_BUFSIZE]; /* Buffer to hold a block of data */
        size_t size = -1;
        int blocknr = 1, retries = 0, c, i;
        bool proceed, usecrc = false;
        uint16_t crc;
        uint8_t sum;
 
+       /*
+        * Reading a block can be very slow, so we read the first block early
+        * to avoid receiving double XM_C char.
+        * This could happen if we check for XM_C and then read the block, giving
+        * the receiving device time to send another XM_C char misinterpretating
+        * the blocks sent.
+        */
+       size = fd->read(fd, block_buffer, XM_BUFSIZE);
 
-       ser_settimeouts(port, SER_DEFRXTIMEOUT, SER_DEFTXTIMEOUT);
        ser_setstatus(port, 0);
        ser_purge(port);
-       lcd_printf(0, 2, LCD_FILL, "Wait remote host");
+       XMODEM_PROGRESS("Wait remote host\n");
 
        for(;;)
        {
                proceed = false;
                do
                {
-                       if (CHECK_ABORT)
+                       if (XMODEM_CHECK_ABORT)
                                return false;
 
                        switch (c = ser_getchar(port))
                        {
                        case XM_NAK:
+                               XMODEM_PROGRESS("Resend blk %d\n", blocknr);
+                               proceed = true;
+                               break;
+
                        case XM_C:
-                               if (blocknr == 1)
+                               if (c == XM_C)
                                {
-                                       if (c == XM_C)
-                                       {
-                                               lcd_printf(0, 2, LCD_FILL, "Tx start (CRC)");
-                                               usecrc = true;
-                                       }
-                                       else
-                                               lcd_printf(0, 2, LCD_FILL, "Tx start (BCC)");
-
-                                       /* Call user function to read in one block */
-                                       size = fd->read(fd, block_buffer, XM_BUFSIZE);
+                                       XMODEM_PROGRESS("Tx start (CRC)\n");
+                                       usecrc = true;
                                }
                                else
-                                       lcd_printf(0, 2, LCD_FILL, "Resend blk %d", blocknr);
+                                       XMODEM_PROGRESS("Tx start (BCC)\n");
+
                                proceed = true;
                                break;
 
@@ -400,25 +365,26 @@ bool xmodem_send(struct Serial *port, KFile *fd)
 
                                /* Call user function to read in one block */
                                size = fd->read(fd, block_buffer, XM_BUFSIZE);
+                               XMODEM_PROGRESS("Send blk %d\n", blocknr);
                                blocknr++;
                                retries = 0;
                                proceed = true;
-                               lcd_printf(0, 2, LCD_FILL, "Send blk %d", blocknr);
                                break;
 
                        case EOF:
+                               ser_setstatus(port, 0);
                                retries++;
-                               SerialError(retries);
+                               XMODEM_PROGRESS("Retries %d\n", retries);
                                if (retries <= XM_MAXRETRIES)
                                        break;
                                /* falling through! */
 
                        case XM_CAN:
-                               lcd_printf(0, 2, LCD_FILL, "Transfer aborted");
+                               XMODEM_PROGRESS("Transfer aborted\n");
                                return false;
 
                        default:
-                               lcd_printf(0, 3, LCD_FILL, "Skipping garbage");
+                               XMODEM_PROGRESS("Skipping garbage\n");
                                break;
                        }
                }
@@ -434,7 +400,11 @@ bool xmodem_send(struct Serial *port, KFile *fd)
                memset(block_buffer + size, 0xFF, XM_BUFSIZE - size);
 
                /* Send block header (STX, blocknr, ~blocknr) */
-               ser_putchar(XM_STX, port);
+               #if XM_BUFSIZE == 128
+                       ser_putchar(XM_SOH, port);
+               #else
+                       ser_putchar(XM_STX, port);
+               #endif
                ser_putchar(blocknr & 0xFF, port);
                ser_putchar(~blocknr & 0xFF, port);
 
@@ -460,3 +430,4 @@ bool xmodem_send(struct Serial *port, KFile *fd)
                        ser_putchar(sum, port);
        }
 }
+#endif