|
@@ -42,7 +42,7 @@
|
|
|
* Input and output ring buffers
|
|
|
*/
|
|
|
static RingBuffer_t c2u_ringbuf; /* CAS -> USB */
|
|
|
-static uint8_t c2u_buffer[128];
|
|
|
+static uint8_t c2u_buffer[512];
|
|
|
|
|
|
/**
|
|
|
* LUFA CDC Class driver interface configuration and state
|
|
@@ -111,12 +111,10 @@ bool _motor_relay;
|
|
|
|
|
|
static inline ATTR_ALWAYS_INLINE void motor_led_on(void)
|
|
|
{
|
|
|
- //PORTB &= ~(1 << 0);
|
|
|
}
|
|
|
|
|
|
static inline ATTR_ALWAYS_INLINE void motor_led_off(void)
|
|
|
{
|
|
|
- //PORTB |= (1 << 0);
|
|
|
}
|
|
|
|
|
|
ISR(TIMER3_CAPT_vect)
|
|
@@ -140,6 +138,7 @@ ISR(TIMER3_CAPT_vect)
|
|
|
} else {
|
|
|
_motor_relay = false;
|
|
|
motor_led_off();
|
|
|
+ fmrx_motor_off();
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -149,16 +148,22 @@ ISR(TIMER3_CAPT_vect)
|
|
|
* or if forced. DSR is always set, DCD indicates if the cassette
|
|
|
* motor relay is active.
|
|
|
*/
|
|
|
-static void update_modem_status(USB_ClassInfo_CDC_Device_t * const cii,
|
|
|
- bool forced)
|
|
|
-{
|
|
|
- uint16_t lines = 0;
|
|
|
+uint16_t _modem_status;
|
|
|
|
|
|
- if (motor_relay()) /* Cassette relay active */
|
|
|
- lines |= CDC_CONTROL_LINE_IN_DCD | CDC_CONTROL_LINE_IN_DSR;
|
|
|
+static void update_modem_status(void)
|
|
|
+{
|
|
|
+ USB_ClassInfo_CDC_Device_t * const cii = &vcpif;
|
|
|
+/* Clear error bits when the motor is stopped */
|
|
|
+ if (!motor_relay()) {
|
|
|
+ _modem_status = 0;
|
|
|
+ } else {
|
|
|
+ /* Cassette relay active */
|
|
|
+ _modem_status |= CDC_CONTROL_LINE_IN_DCD |
|
|
|
+ CDC_CONTROL_LINE_IN_DSR;
|
|
|
+ }
|
|
|
|
|
|
- if (forced || cii->State.ControlLineStates.DeviceToHost != lines) {
|
|
|
- cii->State.ControlLineStates.DeviceToHost = lines;
|
|
|
+ if (_modem_status != cii->State.ControlLineStates.DeviceToHost) {
|
|
|
+ cii->State.ControlLineStates.DeviceToHost = _modem_status;
|
|
|
CDC_Device_SendControlLineStateChange(cii);
|
|
|
}
|
|
|
}
|
|
@@ -169,9 +174,6 @@ static void update_modem_status(USB_ClassInfo_CDC_Device_t * const cii,
|
|
|
*/
|
|
|
static void usb_run_stack(void)
|
|
|
{
|
|
|
- /* Update modem flags if needed */
|
|
|
- update_modem_status(&vcpif, false);
|
|
|
-
|
|
|
CDC_Device_USBTask(&vcpif);
|
|
|
USB_USBTask();
|
|
|
}
|
|
@@ -259,6 +261,7 @@ void do_usb_tasks(void)
|
|
|
{
|
|
|
usb_recv_data();
|
|
|
usb_send_data();
|
|
|
+ update_modem_status();
|
|
|
usb_run_stack();
|
|
|
}
|
|
|
|
|
@@ -276,13 +279,10 @@ int main(void)
|
|
|
|
|
|
GlobalInterruptEnable();
|
|
|
|
|
|
- while (1) {
|
|
|
+ while (1)
|
|
|
do_usb_tasks();
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
-static uint32_t current_baudrate;
|
|
|
-
|
|
|
/** Configures the board hardware and chip peripherals for the demo's functionality. */
|
|
|
void SetupHardware(void)
|
|
|
{
|
|
@@ -379,17 +379,19 @@ void EVENT_USB_Device_Disconnect(void)
|
|
|
/** Event handler for the library USB Configuration Changed event. */
|
|
|
void EVENT_USB_Device_ConfigurationChanged(void)
|
|
|
{
|
|
|
- bool success = true;
|
|
|
+ USB_ClassInfo_CDC_Device_t* const cii = &vcpif;
|
|
|
|
|
|
- success &= CDC_Device_ConfigureEndpoints(&vcpif);
|
|
|
- if (success)
|
|
|
- update_modem_status(&vcpif, true);
|
|
|
+ if (CDC_Device_ConfigureEndpoints(cii)) {
|
|
|
+ cii->State.ControlLineStates.DeviceToHost = 0;
|
|
|
+ CDC_Device_SendControlLineStateChange(&vcpif);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/** Event handler for the library USB Control Request reception event. */
|
|
|
void EVENT_USB_Device_ControlRequest(void)
|
|
|
{
|
|
|
- CDC_Device_ProcessControlRequest(&vcpif);
|
|
|
+ USB_ClassInfo_CDC_Device_t* const cii = &vcpif;
|
|
|
+ CDC_Device_ProcessControlRequest(cii);
|
|
|
}
|
|
|
|
|
|
/*
|