mirror of
https://github.com/exA-Arcadia/exa-io.git
synced 2024-11-30 17:04:27 +01:00
don't import/init edid (PIN_LED_DASH conflicts, and we don't use i2c edid)
This commit is contained in:
parent
20da57dc7f
commit
a9904e3915
@ -14,7 +14,7 @@ add_subdirectory(third_party/pico_i2c_slave/i2c_slave)
|
|||||||
# rest of your project
|
# rest of your project
|
||||||
|
|
||||||
add_executable(td-io
|
add_executable(td-io
|
||||||
td-io.c edid.c
|
td-io.c
|
||||||
)
|
)
|
||||||
|
|
||||||
# Pull in our pico_stdlib which aggregates commonly used features
|
# Pull in our pico_stdlib which aggregates commonly used features
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "pico/stdlib.h"
|
#include "pico/stdlib.h"
|
||||||
#include "hardware/adc.h"
|
#include "hardware/adc.h"
|
||||||
#include "edid.h"
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
const uint PIN_JVS_RE = 2;
|
const uint PIN_JVS_RE = 2;
|
||||||
@ -273,9 +272,6 @@ int main() {
|
|||||||
gpio_set_dir(PIN_DIP1, GPIO_IN);
|
gpio_set_dir(PIN_DIP1, GPIO_IN);
|
||||||
gpio_pull_up(PIN_DIP1);
|
gpio_pull_up(PIN_DIP1);
|
||||||
|
|
||||||
// edid emulation
|
|
||||||
edid_init();
|
|
||||||
|
|
||||||
update_termination();
|
update_termination();
|
||||||
|
|
||||||
uint8_t prev_msg_send[JVS_OUTPUT_BUF_LEN];
|
uint8_t prev_msg_send[JVS_OUTPUT_BUF_LEN];
|
||||||
|
Loading…
Reference in New Issue
Block a user