gps...
i kind of found part of the problem...
the on the boot.py i had
from machine import UART
import os
uart = UART(0, 115200)
os.dupterm(uart)
and on my main.py
from machine import UART
import time
import pycom
uart=UART(1, pins=("G2", "G1") )
pycom.rgbled(0x000000)
uart.init(9600, bits=8, parity=None, stop=1)
while(1):
print(uart.readall())
time.sleep(1)
maybe having uart on the boot and main.py files is conflicting... gonna change them