2020-09-21 01:55:02 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2021-05-06 09:17:59 +00:00
|
|
|
#include "../../../inc/MarlinConfigPre.h"
|
2020-09-21 01:55:02 +00:00
|
|
|
|
|
|
|
#if HAS_TFT_LVGL_UI
|
|
|
|
|
2020-10-21 17:45:27 +00:00
|
|
|
#include "tft_lvgl_configuration.h"
|
2020-09-21 01:55:02 +00:00
|
|
|
|
2020-11-19 21:51:53 +00:00
|
|
|
#if ENABLED(MKS_WIFI_MODULE)
|
2020-09-21 01:55:02 +00:00
|
|
|
|
2020-10-21 17:45:27 +00:00
|
|
|
#include "draw_ui.h"
|
2020-09-21 01:55:02 +00:00
|
|
|
#include "wifiSerial.h"
|
|
|
|
|
|
|
|
#include <libmaple/libmaple.h>
|
|
|
|
#include <libmaple/gpio.h>
|
|
|
|
#include <libmaple/timer.h>
|
|
|
|
#include <libmaple/usart.h>
|
|
|
|
#include <libmaple/ring_buffer.h>
|
|
|
|
|
2021-05-06 09:17:59 +00:00
|
|
|
#include "../../../inc/MarlinConfig.h"
|
2020-09-21 01:55:02 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" { /* C-declarations for C++ */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define WIFI_IO1_SET() WRITE(WIFI_IO1_PIN, HIGH);
|
|
|
|
#define WIFI_IO1_RESET() WRITE(WIFI_IO1_PIN, LOW);
|
|
|
|
|
2021-01-14 06:23:56 +00:00
|
|
|
void __irq_usart1() {
|
2021-01-14 04:41:09 +00:00
|
|
|
if ((USART1_BASE->CR1 & USART_CR1_RXNEIE) && (USART1_BASE->SR & USART_SR_RXNE))
|
|
|
|
WRITE(WIFI_IO1_PIN, HIGH);
|
|
|
|
|
|
|
|
WIFISERIAL.wifi_usart_irq(USART1_BASE);
|
2020-09-21 01:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* C-declarations for C++ */
|
|
|
|
#endif
|
|
|
|
|
2020-11-19 21:51:53 +00:00
|
|
|
#endif // MKS_WIFI_MODULE
|
2020-09-21 01:55:02 +00:00
|
|
|
#endif // HAS_TFT_LVGL_UI
|