Tony Peng
Tony Peng
**Is your feature request related to a problem? Please describe.** One of my cameras supports PTZ, and can be controlled by a Home assistant `button` entity. I've been using the...
I've tested locally and it worked.
E.g., I have wrapped `acl library with the following rule: ```bazel # external/acl/BUILD.bazel file cc_library( name = "acl", hdrs = [ "include/sys/acl.h", "include/acl/libacl.h", ], srcs = [ "lib/x86_64-linux-gnu/libacl.so", "lib/x86_64-linux-gnu/libacl.so.1", "lib/x86_64-linux-gnu/libacl.so.1.1.0",...
Thanks for the help in advance. I have a `cmake` rule defined somewhere, which builds Iceoryx. The build results are some header files, some CMake files and some libraries, as...
@trainman419 You did a very good job! I was using two relay to simulate the button but that's just an ugly solution. It's way better to communicate to the LIN...
1. The way how visibility file is included was changed from using `-include` (affecting all compiling units) to adding to each PB headers. 2. Some dependencies exporting was reformatted so...
Hi @brakmic-aleksandar. In our local integration of `rosidl_typesupport_protobuf` we found something that can be (possibly) improved but I want to discuss it with you. 1. In [this line](https://github.com/continental/rosidl_typesupport_protobuf/blob/7483e2d4d3f4d039a0182c3df50cf5f313de373c/rosidl_adapter_proto/cmake/rosidl_adapter_proto-extras.cmake.in#L31), `rosidl_adapt_proto_interfaces.cmake` was...
最近在采用一个swiper库,有这么一个需求。每个slide都有一个背景图片,理论上应该是用`style="background: url(/public/1.jpg)"`进行,这种情况下fis3能正确定位并加上hash。 但是为了进行懒加载,需要将这个图片的位置放在data-src中,如下: ```html ``` 经过试验,data-src是支持替换的,但是其余的比如 `xlink:href`(经常出现于SVG图片里)就无法进行替换,估计是没有对这个作正则匹配。请问有什么办法可以实现这一点么?
Suppose I have 5 MRs assigned to marge-bot, it'll by default pick the oldest one. However, if one is urgent and should be merged before others, currently there's no way...
I have a `const` class function that checks if a `DataReader` member has any data ready to be received. The problem is, `DataReader::read()` itself is not const. https://github.com/eclipse-cyclonedds/cyclonedds-cxx/blob/master/src/ddscxx/include/dds/sub/detail/DataReader.hpp#L74 I understand...