We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix XML and hardware model XML parsing.
Wrong:
<simulator> <name>camsim</name> <active>true</active> <library>libcam_sim.so</library> <hardware-model> <type>ARDUCAM_OV5640</type> <connections> <connection><type>command</type><bus-name>command</bus-name><node-name>cam-command-node</node-name></connection> </connections> <!-- <stream_data>true</stream_data> --> <i2c> <address>60</address> <bus>i2c_2</bus> </i2c> <spi> <bus>spi_0</bus> <chip_select>0</chip_select> </spi> </hardware-model>
Right:
<simulator> <name>camsim</name> <active>true</active> <library>libcam_sim.so</library> <hardware-model> <type>ARDUCAM_OV5640</type> <connections> <connection><type>command</type><bus-name>command</bus-name><node-name>cam-command-node</node-name></connection> <connection><type>spi</type> <bus-name>spi_0</bus-name> <chip-select>0</chip-select> </connection> <connection><type>i2c</type> <bus-name>i2c_2</bus-name> <address>60</address> </connection> </connections> <!-- <stream_data>true</stream_data> --> </hardware-model>
The text was updated successfully, but these errors were encountered:
Other sims that need fixed (move bus info under <connections><connection>...): generic_css_sim.
<connections><connection>...
Sorry, something went wrong.
This should be resolved as part of the #164 issue
Isgaroth-the-Green
No branches or pull requests
Fix XML and hardware model XML parsing.
Wrong:
Right:
The text was updated successfully, but these errors were encountered: