2 * Testing Communication with Sinclair Air Conditioner
4 * (c) 2023 Martin Mareš <mj@ucw.cz>
9 #include <libopencm3/cm3/cortex.h>
10 #include <libopencm3/cm3/nvic.h>
11 #include <libopencm3/cm3/systick.h>
12 #include <libopencm3/cm3/scb.h>
13 #include <libopencm3/stm32/rcc.h>
14 #include <libopencm3/stm32/desig.h>
15 #include <libopencm3/stm32/gpio.h>
16 #include <libopencm3/stm32/usart.h>
17 #include <libopencm3/stm32/spi.h>
18 #include <libopencm3/stm32/timer.h>
19 #include <libopencm3/usb/dfu.h>
20 #include <libopencm3/usb/usbd.h>
24 /*** Hardware init ***/
26 static void clock_init(void)
28 rcc_clock_setup_pll(&rcc_hse_configs[RCC_CLOCK_HSE8_72MHZ]);
30 rcc_periph_clock_enable(RCC_GPIOA);
31 rcc_periph_clock_enable(RCC_GPIOB);
32 rcc_periph_clock_enable(RCC_GPIOC);
33 rcc_periph_clock_enable(RCC_SPI2);
34 rcc_periph_clock_enable(RCC_USART1);
35 rcc_periph_clock_enable(RCC_USB);
36 rcc_periph_clock_enable(RCC_TIM3);
37 rcc_periph_clock_enable(RCC_TIM4);
39 rcc_periph_reset_pulse(RST_GPIOA);
40 rcc_periph_reset_pulse(RST_GPIOB);
41 rcc_periph_reset_pulse(RST_GPIOC);
42 rcc_periph_reset_pulse(RST_SPI2);
43 rcc_periph_reset_pulse(RST_USART1);
44 rcc_periph_reset_pulse(RST_USB);
45 rcc_periph_reset_pulse(RST_TIM3);
46 rcc_periph_reset_pulse(RST_TIM4);
49 static void gpio_init(void)
51 // PA9 = TXD1 for debugging console
52 // PA10 = RXD1 for debugging console
53 gpio_set_mode(GPIOA, GPIO_MODE_OUTPUT_50_MHZ, GPIO_CNF_OUTPUT_ALTFN_PUSHPULL, GPIO9);
54 gpio_set_mode(GPIOA, GPIO_MODE_INPUT, GPIO_CNF_INPUT_FLOAT, GPIO10);
56 // PC13 = BluePill LED
57 gpio_set_mode(GPIOC, GPIO_MODE_OUTPUT_50_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO13);
58 gpio_clear(GPIOC, GPIO13);
62 gpio_set_mode(GPIOB, GPIO_MODE_INPUT, GPIO_CNF_INPUT_FLOAT, GPIO13);
63 gpio_set_mode(GPIOB, GPIO_MODE_INPUT, GPIO_CNF_INPUT_FLOAT, GPIO15);
65 // PA8 = IR remote control
66 gpio_clear(GPIOA, GPIO8);
67 gpio_set_mode(GPIOA, GPIO_MODE_OUTPUT_50_MHZ, GPIO_CNF_OUTPUT_PUSHPULL, GPIO8);
70 static void usart_init(void)
72 usart_set_baudrate(USART1, 115200);
73 usart_set_databits(USART1, 8);
74 usart_set_stopbits(USART1, USART_STOPBITS_1);
75 usart_set_mode(USART1, USART_MODE_TX_RX);
76 usart_set_parity(USART1, USART_PARITY_NONE);
77 usart_set_flow_control(USART1, USART_FLOWCONTROL_NONE);
82 /*** System ticks ***/
84 static volatile u32 ms_ticks;
86 void sys_tick_handler(void)
91 static void tick_init(void)
93 systick_set_frequency(1000, CPU_CLOCK_MHZ * 1000000);
94 systick_counter_enable();
95 systick_interrupt_enable();
98 static void delay_ms(uint ms)
100 u32 start_ticks = ms_ticks;
101 while (ms_ticks - start_ticks < ms)
105 /*** Emulated TM1618 LED Driver ***/
108 * Theory of operation:
110 * TM1618 communicates using a bi-directional SPI-like protocol.
111 * The AC unit is sending a stream of commands like this once per ca. 4 ms:
113 * 00 - set mode: 4 grids, 8 segments
114 * 44 - will write to display memory, no auto-increment
115 * Cx - set memory address to x
116 * yy - data to write, two most-significant bits are always zero
117 * 8B - display ON, duty cycle 10/16
119 * No read commands are issued, so we can simulate TM1618 using a pure SPI slave.
121 * Commands are delimited using the STB* (strobe) pin, but since our opto-couplers
122 * are negating, we cannot route this pin to SS (slave select) of our SPI.
123 * We tried triggering an external interrupt by this pin, but it turned out
124 * that the latency is too high.
126 * Instead, we ignore STB* completely and implement a self-synchronizing receiver:
128 * - The only byte which can have top 2 bits both set is the Cx command,
129 * so we can use this to find memory addresses and data in the stream.
130 * We can ignore all other commands.
132 * - Whenever 1 ms passes since the last byte was received, we reset the SPI.
133 * This allows us to recover from misaligned bytes.
136 static void tm_init(void)
138 // Configure SPI2 to receive
139 spi_set_receive_only_mode(SPI2);
140 spi_enable_software_slave_management(SPI2);
141 spi_set_nss_low(SPI2);
142 spi_send_lsb_first(SPI2);
143 spi_set_clock_polarity_0(SPI2);
144 spi_set_clock_phase_1(SPI2);
145 spi_enable_rx_buffer_not_empty_interrupt(SPI2);
146 nvic_enable_irq(NVIC_SPI2_IRQ);
149 // TIM3 will handle receive timeout
150 timer_set_prescaler(TIM3, CPU_CLOCK_MHZ-1); // 1 tick = 1 μs
151 timer_set_mode(TIM3, TIM_CR1_CKD_CK_INT, TIM_CR1_CMS_EDGE, TIM_CR1_DIR_DOWN);
152 timer_update_on_overflow(TIM3);
153 timer_disable_preload(TIM3);
154 timer_one_shot_mode(TIM3);
155 timer_enable_irq(TIM3, TIM_DIER_UIE);
156 nvic_enable_irq(NVIC_TIM3_IRQ);
160 * Data memory of TM1618:
162 * [0] . . . - - - - -
163 * [1] . . - - HEAT . . .
164 * [2] . . . DRY - SLP MED LOW
165 * [3] . . HIGH AUTO COOL . . .
166 * [4] . . . B2 - G2 D2 C2
167 * [5] . . E2 F2 A2 . . .
168 * [6] . . . B1 - G1 D1 C1
169 * [7] . . E1 F1 A1 . . .
171 * "." is an always-zero bit not defined by TM1618, "-" is defined, but not used by AC.
173 static volatile byte tm_data[8];
174 static volatile uint tm_overruns;
176 static volatile byte tm_buffer[256];
177 static volatile uint tm_len;
204 static const u16 tm_digits[10] = {
205 [0] = SEGa | SEGb | SEGc | SEGd | SEGe | SEGf,
207 [2] = SEGa | SEGb | SEGd | SEGe | SEGg,
208 [3] = SEGa | SEGb | SEGc | SEGd | SEGg,
209 [4] = SEGb | SEGc | SEGf | SEGg,
210 [5] = SEGa | SEGc | SEGd | SEGf | SEGg,
211 [6] = SEGa | SEGc | SEGd | SEGe | SEGf | SEGg,
212 [7] = SEGa | SEGb | SEGc,
213 [8] = SEGa | SEGb | SEGc | SEGd | SEGe | SEGf | SEGg,
214 [9] = SEGa | SEGb | SEGc | SEGd | SEGf | SEGg,
217 static volatile uint tm_timeouts;
221 if (SPI_SR(SPI2) & SPI_SR_OVR)
223 if (SPI_SR(SPI2) & SPI_SR_RXNE) {
224 byte x = SPI_DR(SPI2) ^ 0xff;
226 if (tm_len < ARRAY_SIZE(tm_buffer))
227 tm_buffer[tm_len++] = x;
229 static byte tm_address;
231 tm_data[tm_address & 7] = x;
233 } else if ((x & 0xc0) == 0xc0) {
236 timer_set_period(TIM3, 999);
237 timer_generate_event(TIM3, TIM_EGR_UG);
238 timer_enable_counter(TIM3);
244 if (TIM_SR(TIM3) & TIM_SR_UIF) {
245 TIM_SR(TIM3) &= ~TIM_SR_UIF;
247 spi_set_nss_high(SPI2);
248 spi_set_nss_low(SPI2);
252 static void tm_show(void)
255 for (uint i=0; i<8; i++)
256 debug_printf(" %02x", tm_data[i]);
257 debug_printf(" o=%d t=%d", tm_overruns, tm_timeouts);
260 if (tm_data[1] & 0x08)
261 debug_printf(" HEAT");
262 if (tm_data[2] & 0x10)
263 debug_printf(" DRY");
264 if (tm_data[2] & 0x04)
265 debug_printf(" SLEEP");
266 if (tm_data[2] & 0x02)
267 debug_printf(" MED");
268 if (tm_data[2] & 0x01)
269 debug_printf(" LOW");
270 if (tm_data[3] & 0x20)
271 debug_printf(" HIGH");
272 if (tm_data[3] & 0x10)
273 debug_printf(" AUTO");
274 if (tm_data[3] & 0x08)
275 debug_printf(" COOL");
278 for (int i=0; i<2; i++) {
279 uint x = (tm_data[7-2*i] << 8) | tm_data[6-2*i];
281 while (j < 10 && tm_digits[j] != x)
292 static byte tm_dumped;
293 if (!tm_dumped && tm_len == ARRAY_SIZE(tm_buffer)) {
294 for (uint i=0; i < tm_len; i++)
295 debug_printf("%02x ", tm_buffer[i]);
303 /*** Infra-red remote control simulator ***/
306 * The AC unit expects demodulated IR signal. The RC sends 52-bit messages
307 * (plus leader and trailer). The last 4 bits are a complement of checksum
311 #define RC_POWER_OFF_HI 0b00000000000000000000
312 #define RC_POWER_OFF_LO 0b00000000000000010000000010100100
314 #define RC_DEFAULT_HI 0b00000011000000000000
316 // Combines with a temperature setting (17-30)
317 #define RC_COOL_AUTO 0b00000000000000010000000000000000
318 #define RC_COOL_HI 0b00000000000000010000100000000000
319 #define RC_COOL_MED 0b00000000000000010001000100000000
320 #define RC_COOL_LO 0b00000000000000010010001000000000
322 static const u32 rc_cool_fan[4] = {
329 // Combines with a temperature setting (15-25)
330 #define RC_WARM 0b00000000000000010000001100000000
332 // This is sent with temperature=17
333 #define RC_DEHUMIDIFY 0b00000000000000010010010000000000
335 // This can be added to any command to enable sleep mode, but we do not issue these yet
336 #define RC_SLEEP 0b00000000000010000000000000000000
345 static byte rc_mode = MODE_COOL; // MODE_xxx
346 static byte rc_fan; // 0-3
347 static byte rc_temp = 17; // 15-30
349 static void rc_init(void)
351 // TIM4 runs at 1 MHz and it is used for timing of RC pulses
352 timer_set_prescaler(TIM4, CPU_CLOCK_MHZ - 1);
353 timer_set_mode(TIM4, TIM_CR1_CKD_CK_INT, TIM_CR1_CMS_EDGE, TIM_CR1_DIR_UP);
354 timer_update_on_overflow(TIM4);
355 timer_disable_preload(TIM4);
356 timer_one_shot_mode(TIM4);
357 timer_enable_irq(TIM4, TIM_DIER_UIE);
358 nvic_enable_irq(NVIC_TIM4_IRQ);
361 static u32 rc_pattern[2];
364 static void rc_encode(void)
366 if (rc_mode == MODE_OFF) {
367 rc_pattern[0] = RC_POWER_OFF_HI;
368 rc_pattern[1] = RC_POWER_OFF_LO;
372 rc_pattern[0] = RC_DEFAULT_HI;
375 if (rc_mode == MODE_COOL) {
376 rc_pattern[1] = rc_cool_fan[rc_fan];
381 } else if (rc_mode == MODE_WARM) {
382 rc_pattern[1] = RC_WARM;
388 rc_pattern[1] = RC_DEHUMIDIFY;
392 // Encode temperature
393 rc_pattern[1] |= (t - 15) << 4;
397 for (uint i=0; i<2; i++)
398 for (uint j=0; j<32; j+=4)
399 sum += (rc_pattern[i] >> j) & 0x0f;
400 rc_pattern[1] |= (sum & 0x0f) ^ 0x0f;
405 if (TIM_SR(TIM4) & TIM_SR_UIF) {
406 TIM_SR(TIM4) &= ~TIM_SR_UIF;
408 bool val; // 1=pulse, 0=break
409 uint duration; // in μs
417 // Initial / final marker
438 // Even ticks 4 to 106 transmit 52 bits of data
439 uint i = 12 + (rc_tick - 4) / 2;
441 if (rc_pattern[i>>5] & (0x80000000 >> (i & 31))) {
454 gpio_set(GPIOA, GPIO8);
456 gpio_clear(GPIOA, GPIO8);
458 timer_set_period(TIM4, duration - 1);
459 timer_generate_event(TIM4, TIM_EGR_UG);
460 timer_enable_counter(TIM4);
464 static void rc_send(void)
470 debug_printf("RC sending: %05x %08x (mode=%d, fan=%d, temp=%d)\n",
471 (uint) rc_pattern[0], (uint) rc_pattern[1],
472 rc_mode, rc_fan, rc_temp);
475 timer_set_period(TIM4, 1);
476 timer_generate_event(TIM4, TIM_EGR_UG);
477 timer_enable_counter(TIM4);
480 static bool rc_key(char key)
486 } else if (key == 'c') {
490 } else if (key == 'w') {
494 } else if (key == 'd') {
495 rc_mode = MODE_DEHUMIDIFY;
498 } else if (key == 'a') {
502 } else if (key == 'l') {
506 } else if (key == 'm') {
510 } else if (key == 'h') {
514 } else if (key >= '7' && key <= '9') {
515 rc_temp = key - '0' + 10;
518 } else if (key >= '0' && key <= '6') {
519 rc_temp = key - '0' + 20;
522 } else if (key == '&') {
526 } else if (key == '*') {
530 } else if (key == '(') {
534 } else if (key == ')') {
544 static usbd_device *usbd_dev;
547 STR_MANUFACTURER = 1,
552 static char usb_serial_number[13];
554 static const char *usb_strings[] = {
555 "United Computer Wizards",
556 "Sinclair Air Conditioner",
560 static const struct usb_device_descriptor device = {
561 .bLength = USB_DT_DEVICE_SIZE,
562 .bDescriptorType = USB_DT_DEVICE,
564 .bDeviceClass = 0xFF,
565 .bDeviceSubClass = 0,
566 .bDeviceProtocol = 0,
567 .bMaxPacketSize0 = 64,
571 .iManufacturer = STR_MANUFACTURER,
572 .iProduct = STR_PRODUCT,
573 .iSerialNumber = STR_SERIAL,
574 .bNumConfigurations = 1,
577 static const struct usb_endpoint_descriptor endpoints[] = {{
578 // Bulk end-point for sending values to the display
579 .bLength = USB_DT_ENDPOINT_SIZE,
580 .bDescriptorType = USB_DT_ENDPOINT,
581 .bEndpointAddress = 0x01,
582 .bmAttributes = USB_ENDPOINT_ATTR_BULK,
583 .wMaxPacketSize = 64,
587 static const struct usb_interface_descriptor iface = {
588 .bLength = USB_DT_INTERFACE_SIZE,
589 .bDescriptorType = USB_DT_INTERFACE,
590 .bInterfaceNumber = 0,
591 .bAlternateSetting = 0,
593 .bInterfaceClass = 0xFF,
594 .bInterfaceSubClass = 0,
595 .bInterfaceProtocol = 0,
597 .endpoint = endpoints,
600 static const struct usb_dfu_descriptor dfu_function = {
601 .bLength = sizeof(struct usb_dfu_descriptor),
602 .bDescriptorType = DFU_FUNCTIONAL,
603 .bmAttributes = USB_DFU_CAN_DOWNLOAD | USB_DFU_WILL_DETACH,
604 .wDetachTimeout = 255,
605 .wTransferSize = 1024,
606 .bcdDFUVersion = 0x0100,
609 static const struct usb_interface_descriptor dfu_iface = {
610 .bLength = USB_DT_INTERFACE_SIZE,
611 .bDescriptorType = USB_DT_INTERFACE,
612 .bInterfaceNumber = 1,
613 .bAlternateSetting = 0,
615 .bInterfaceClass = 0xFE,
616 .bInterfaceSubClass = 1,
617 .bInterfaceProtocol = 1,
620 .extra = &dfu_function,
621 .extralen = sizeof(dfu_function),
624 static const struct usb_interface ifaces[] = {{
626 .altsetting = &iface,
629 .altsetting = &dfu_iface,
632 static const struct usb_config_descriptor config = {
633 .bLength = USB_DT_CONFIGURATION_SIZE,
634 .bDescriptorType = USB_DT_CONFIGURATION,
637 .bConfigurationValue = 1,
639 .bmAttributes = 0x80,
640 .bMaxPower = 50, // multiplied by 2 mA
644 static byte usb_configured;
645 static uint8_t usbd_control_buffer[64];
647 static void dfu_detach_complete(usbd_device *dev UNUSED, struct usb_setup_data *req UNUSED)
649 // Reset to bootloader, which implements the rest of DFU
650 debug_printf("Switching to DFU\n");
655 static enum usbd_request_return_codes dfu_control_cb(usbd_device *dev UNUSED,
656 struct usb_setup_data *req,
657 uint8_t **buf UNUSED,
658 uint16_t *len UNUSED,
659 void (**complete)(usbd_device *dev, struct usb_setup_data *req))
661 if (req->bmRequestType != 0x21 || req->bRequest != DFU_DETACH)
662 return USBD_REQ_NOTSUPP;
664 *complete = dfu_detach_complete;
665 return USBD_REQ_HANDLED;
668 static void ep01_cb(usbd_device *dev, uint8_t ep UNUSED)
670 // We received a frame from the USB host
672 uint len = usbd_ep_read_packet(dev, 0x01, buf, 8);
673 debug_printf("USB: Host sent %u bytes\n", len);
676 static void set_config_cb(usbd_device *dev, uint16_t wValue UNUSED)
678 usbd_register_control_callback(
680 USB_REQ_TYPE_CLASS | USB_REQ_TYPE_INTERFACE,
681 USB_REQ_TYPE_TYPE | USB_REQ_TYPE_RECIPIENT,
683 usbd_ep_setup(dev, 0x01, USB_ENDPOINT_ATTR_BULK, 64, ep01_cb);
687 static void reset_cb(void)
689 debug_printf("USB: Reset\n");
693 static volatile bool usb_event_pending;
695 void usb_lp_can_rx0_isr(void)
698 * We handle USB in the main loop to avoid race conditions between
699 * USB interrupts and other code. However, we need an interrupt to
700 * up the main loop from sleep.
702 * We set up only the low-priority ISR, because high-priority ISR handles
703 * only double-buffered bulk transfers and isochronous transfers.
705 nvic_disable_irq(NVIC_USB_LP_CAN_RX0_IRQ);
706 usb_event_pending = 1;
709 static void usb_init(void)
711 // Simulate USB disconnect
712 gpio_set_mode(GPIOA, GPIO_MODE_OUTPUT_50_MHZ, GPIO_CNF_OUTPUT_OPENDRAIN, GPIO11 | GPIO12);
713 gpio_clear(GPIOA, GPIO11 | GPIO12);
716 usbd_dev = usbd_init(
717 &st_usbfs_v1_usb_driver,
721 ARRAY_SIZE(usb_strings),
723 sizeof(usbd_control_buffer)
725 usbd_register_reset_callback(usbd_dev, reset_cb);
726 usbd_register_set_config_callback(usbd_dev, set_config_cb);
727 usb_event_pending = 1;
739 desig_get_unique_id_as_dfu(usb_serial_number);
741 debug_printf("Hello, world!\n");
750 if (ms_ticks - last_blink >= 1000) {
752 last_blink = ms_ticks;
756 if (usart_get_flag(USART1, USART_SR_RXNE)) {
757 uint ch = usart_recv(USART1);
760 gpio_set(GPIOA, GPIO8);
762 gpio_clear(GPIOA, GPIO8);
771 if (usb_event_pending) {
773 usb_event_pending = 0;
774 nvic_clear_pending_irq(NVIC_USB_LP_CAN_RX0_IRQ);
775 nvic_enable_irq(NVIC_USB_LP_CAN_RX0_IRQ);
778 wait_for_interrupt();