Benjamin Szőke

Results 26 comments of Benjamin Szőke

@fabioestevam Please review the following patch series: [[u-boot][master][PATCH 1/3] pico-imx7d: add support for 2GB memory SoMs](https://lists.denx.de/pipermail/u-boot/2022-December/502465.html) [[u-boot][master][PATCH 2/3] pico-imx7d: add baseboard SD card boot detect](https://lists.denx.de/pipermail/u-boot/2022-December/502466.html) [[u-boot][master][PATCH 3/3] pico-imx7d: update defconfigs...

As i see it will be never to merged and you really do not care about the full functionality of i.MX boards in this u-boot repo. It is totally pointless...

Use nlohmann C++ json lib, it is much better in releasing and documentation. I gave up waiting for new rapidjson release, i am using this other from now. https://github.com/nlohmann/json

@vsergeev What do you think, is it fine? ```python import os from periphery import MMIO def get_uio_dev(uio_name): for dev in os.listdir("/sys/class/uio"): with open("/sys/class/uio/" + dev + "/name", "r") as f:...

> It's a good idea -- could use a few more getters with the UIO info. One thing to decide is whether or not to abstract away the interrupt counts...

Duplicated issue: https://github.com/vsergeev/python-periphery/issues/37, https://github.com/vsergeev/c-periphery/issues/19 It would be useful for me also. I made a modified `def transfer_burst(self, data):` method to do it. I could send it in a pull-request. But...

> Hi @MrCry0 and @otavio > > I fixed the boot issue and submitted a pull request: > > [Freescale/linux-fslc@e9ea6ba](https://github.com/Freescale/linux-fslc/commit/e9ea6badf7e56126f0ce82a423c32e8b5715a4ea) I faced this same issue, but as i see it...

> @Livius90 thanks for the PR. My only concerns are that we shouldn't add `*_INVALID` states to the end of the enums. What if we legitimately needed to add a...

Do you mean the `*_INVALID` type should be the first like this? ```C typedef enum pwm_polarity { PWM_POLARITY_INVALID, PWM_POLARITY_NORMAL, /* Normal polarity */ PWM_POLARITY_INVERSED, /* Inversed polarity */ } pwm_polarity_t;...