FreeCalypso > hg > fc-magnetite
view src/cs/layer1/tpu_drivers/tpu_drivers.mak @ 680:ee3ac8c617cb
armio.c: set GPIO2 output high initially
On TI-canonical platforms GPIO2 is DCD modem control output. In TI's
original code the AI_InitIOConfig() function called from Init_Target()
would configure GPIO2 as an output and set the initial output value to
low, but then the init code in uartfax.c called from Init_Serial_Flows()
would immediately change it to high, corresponding to DCD not asserted.
The result is a momentary asserted-state glitch on the DCD output.
The present change eliminates this glitch, setting DCD output to
not-asserted initially like it should be.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 25 Jun 2020 03:17:43 +0000 |
| parents | 945cf7f506b2 |
| children |
line wrap: on
line source
# # TPU drivers makefile # # Compilation flags TPU_DBG := $(DBG) # $(DBG) for debug; see master.mak for definition TPU_DRIVERS_FLAGS := $(TPU_DBG) -c $(16INST) $(ALGN) -o2 $(CFLAGSTPUDRIVERS) CFG_LIBS += $(TPU_DRIVERS_LIB) # Source definitions SRC_TPU_DRV := $(TPU_DRIVERS_DIR)/source/tpudrv.c $(TPU_DRIVERS_DIR)/source0/tpudrv$(RF_FAM).c ifeq ($(L1_GPRS), 1) SRC_TPU_DRV += $(TPU_DRIVERS_DIR)/p_source0/p_tpudr$(RF_FAM).c endif # Objects definition OBJ_TPU_DRV := $(patsubst ../%.c,$(TEMPORARY_FILE_DIR)/%.obj,$(filter %.c,$(SRC_TPU_DRV))) CFG_OBJS += $(OBJ_TPU_DRV) CFG_DEPS += $(OBJ_TPU_DRV:.obj=.d) # Library $(TPU_DRIVERS_LIB) : $(OBJ_TPU_DRV) $(AR470) r $(TPU_DRIVERS_LIB) $(OBJ_TPU_DRV) # Objects $(OBJ_TPU_DRV) : $(TEMPORARY_FILE_DIR)/%.obj: ../%.c $(COMPILER) $(TPU_DRIVERS_FLAGS) -fr$(@D) $<
