Part Number: AM625
I am using AM62 uboot and would like to use the gpio command for debugging work.
At the moment, the uboot built with reference to the following is working by writing to eMMC via DFU, but the gpio command is not available.
software-dl.ti.com/.../UG-General-Info.html
Therefore, I opened menucofig with the following command, opened configs/am62x_evm_a53_defconfig from load, changed CONFIG_CMD_GPIO to y and built again.
sudo make menuconfig ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabihf-
Then, I have not found any errors in include/common.h:16's include/ config.h:4:10 at include/common.h:16, but it failed with No such file or directory.
I do not understand the cause of this. Do I need to bring anything additional?
By the way, if I edit am62x_evm_a53_defconfig directly and set CONFIG_CMD_GPIO=y, it does not work correctly, but the build succeeds and I can execute the command.
=> gpio set 409 i2c_write: error waiting for data ACK (status=0x116) pca953x gpio@22: Error reading output register GPIO: '409' not found Command 'gpio' failed: Error -121 => gpio clear 409 i2c_write: error waiting for data ACK (status=0x116) pca953x gpio@22: Error reading output register GPIO: '409' not found Command 'gpio' failed: Error -121 =>