1
0
mirror of https://github.com/exA-Arcadia/exa-io.git synced 2024-11-27 23:50:51 +01:00

don't import/init edid (PIN_LED_DASH conflicts, and we don't use i2c edid)

This commit is contained in:
Kevin Nakamura 2023-08-21 15:01:03 +09:00
parent 20da57dc7f
commit a9904e3915
2 changed files with 1 additions and 5 deletions

View File

@ -14,7 +14,7 @@ add_subdirectory(third_party/pico_i2c_slave/i2c_slave)
# rest of your project
add_executable(td-io
td-io.c edid.c
td-io.c
)
# Pull in our pico_stdlib which aggregates commonly used features

View File

@ -1,7 +1,6 @@
#include <stdio.h>
#include "pico/stdlib.h"
#include "hardware/adc.h"
#include "edid.h"
#include <string.h>
const uint PIN_JVS_RE = 2;
@ -273,9 +272,6 @@ int main() {
gpio_set_dir(PIN_DIP1, GPIO_IN);
gpio_pull_up(PIN_DIP1);
// edid emulation
edid_init();
update_termination();
uint8_t prev_msg_send[JVS_OUTPUT_BUF_LEN];