|
@@ -41,9 +41,9 @@
|
|
|
/*
|
|
|
* Input and output ring buffers
|
|
|
*/
|
|
|
-static RingBuffer_t u2c_ringbuf; /* USB -> CDC */
|
|
|
-static uint8_t u2c_buffer[128];
|
|
|
-static RingBuffer_t c2u_ringbuf; /* CDC -> USB */
|
|
|
+static RingBuffer_t u2c_ringbuf; /* USB -> CAS */
|
|
|
+static uint8_t u2c_buffer[512];
|
|
|
+static RingBuffer_t c2u_ringbuf; /* CAS -> USB */
|
|
|
static uint8_t c2u_buffer[128];
|
|
|
|
|
|
/**
|
|
@@ -143,10 +143,10 @@ ISR(TIMER3_CAPT_vect)
|
|
|
static void update_modem_status(USB_ClassInfo_CDC_Device_t * const cii,
|
|
|
bool forced)
|
|
|
{
|
|
|
- uint16_t lines = CDC_CONTROL_LINE_IN_DSR;
|
|
|
+ uint16_t lines = 0;
|
|
|
|
|
|
if (motor_relay) /* Cassette relay active */
|
|
|
- lines |= CDC_CONTROL_LINE_IN_DCD;
|
|
|
+ lines |= CDC_CONTROL_LINE_IN_DCD | CDC_CONTROL_LINE_IN_DSR;
|
|
|
|
|
|
if (forced || cii->State.ControlLineStates.DeviceToHost != lines) {
|
|
|
cii->State.ControlLineStates.DeviceToHost = lines;
|
|
@@ -186,6 +186,68 @@ static bool usb_send_next_byte(void)
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
+static void usb_recv_data(void)
|
|
|
+{
|
|
|
+ int byte;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Only try to read in bytes from the CDC interface if
|
|
|
+ * the transmit buffer is not full
|
|
|
+ */
|
|
|
+ if (RingBuffer_IsFull(&u2c_ringbuf))
|
|
|
+ return;
|
|
|
+
|
|
|
+ byte = CDC_Device_ReceiveByte(&vcpif);
|
|
|
+ if (byte < 0)
|
|
|
+ return; /* No data */
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Store received byte into the transmit buffer, then
|
|
|
+ * enable the transmit ISR if disabled
|
|
|
+ */
|
|
|
+ RingBuffer_Insert(&u2c_ringbuf, byte);
|
|
|
+ if (motor_relay)
|
|
|
+ fmtx_enable();
|
|
|
+}
|
|
|
+
|
|
|
+static void usb_send_data(void)
|
|
|
+{
|
|
|
+ uint16_t outbytes = RingBuffer_GetCount(&c2u_ringbuf);
|
|
|
+
|
|
|
+ if (!outbytes)
|
|
|
+ return;
|
|
|
+
|
|
|
+ Endpoint_SelectEndpoint(vcpif.Config.DataINEndpoint.Address);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Check if a packet is already enqueued to
|
|
|
+ * the host - if so, we shouldn't try to send
|
|
|
+ * more data until it completes as there is a
|
|
|
+ * chance nothing is listening and a lengthy
|
|
|
+ * timeout could occur
|
|
|
+ */
|
|
|
+ if (!Endpoint_IsINReady())
|
|
|
+ return;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Never send more than one bank size
|
|
|
+ * less one byte to the host at a
|
|
|
+ * time, so that we don't block while
|
|
|
+ * a Zero Length Packet (ZLP) to
|
|
|
+ * terminate the transfer is sent if
|
|
|
+ * the host isn't listening */
|
|
|
+ outbytes = MIN(outbytes, (CDC_TXRX_EPSIZE - 1));
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Transfer output bytes to the USB
|
|
|
+ * endpoint. Abort without dequeuing if
|
|
|
+ * there is an error.
|
|
|
+ */
|
|
|
+ while (outbytes--)
|
|
|
+ if (usb_send_next_byte())
|
|
|
+ break;
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* Main program entry point. This routine contains the overall program
|
|
|
* flow, including initial setup of
|
|
@@ -203,58 +265,8 @@ int main(void)
|
|
|
|
|
|
for (;;)
|
|
|
{
|
|
|
- /*
|
|
|
- * Only try to read in bytes from the CDC interface if
|
|
|
- * the transmit buffer is not full
|
|
|
- */
|
|
|
- if (!(RingBuffer_IsFull(&u2c_ringbuf))) {
|
|
|
- int byte;
|
|
|
-
|
|
|
- byte = CDC_Device_ReceiveByte(&vcpif);
|
|
|
-
|
|
|
- /*
|
|
|
- * Store received byte into the transmit buffer, then
|
|
|
- * enable the transmit ISR if disabled
|
|
|
- */
|
|
|
- if (byte >= 0) {
|
|
|
- RingBuffer_Insert(&u2c_ringbuf, byte);
|
|
|
- if (motor_relay)
|
|
|
- fmtx_enable();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- uint16_t outbytes = RingBuffer_GetCount(&c2u_ringbuf);
|
|
|
- if (outbytes) {
|
|
|
- Endpoint_SelectEndpoint(vcpif.Config.DataINEndpoint.Address);
|
|
|
-
|
|
|
- /*
|
|
|
- * Check if a packet is already enqueued to
|
|
|
- * the host - if so, we shouldn't try to send
|
|
|
- * more data until it completes as there is a
|
|
|
- * chance nothing is listening and a lengthy
|
|
|
- * timeout could occur
|
|
|
- */
|
|
|
- if (Endpoint_IsINReady()) {
|
|
|
- /*
|
|
|
- * Never send more than one bank size
|
|
|
- * less one byte to the host at a
|
|
|
- * time, so that we don't block while
|
|
|
- * a Zero Length Packet (ZLP) to
|
|
|
- * terminate the transfer is sent if
|
|
|
- * the host isn't listening */
|
|
|
- outbytes = MIN(outbytes, (CDC_TXRX_EPSIZE - 1));
|
|
|
-
|
|
|
- /*
|
|
|
- * Transfer output bytes to the USB
|
|
|
- * endpoint. Abort without dequeuing if
|
|
|
- * there is an error.
|
|
|
- */
|
|
|
- while (outbytes--)
|
|
|
- if (usb_send_next_byte())
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
+ usb_recv_data();
|
|
|
+ usb_send_data();
|
|
|
do_usb_task();
|
|
|
}
|
|
|
}
|
|
@@ -421,4 +433,5 @@ void EVENT_CDC_Device_LineEncodingChanged(USB_ClassInfo_CDC_Device_t* const cii)
|
|
|
*/
|
|
|
void EVENT_CDC_Device_ControLineStateChanged(USB_ClassInfo_CDC_Device_t* const cii)
|
|
|
{
|
|
|
+ /* Currently not used */
|
|
|
}
|