<div dir="ltr">Hi all,<div><br></div><div>Now I&#39;m playing with a Baofeng BF-5R.  I can successfully clone and write to the radio with the BF-888 driver but there isn&#39;t feature parity so I&#39;m attempting a new class for the BF-5R.</div><div><br></div><div>I was hoping that setting the following _has_ variables to False would make them disappear from the UI but they haven&#39;t.  I have the opposite problem with my BF-C50 driver where I need to add a side-tone setting to the UI.</div><div><br></div><div>Does anyone have any pointers for me?  I feel like I&#39;m pretty close on completing drivers for the BF-5R and BF-C50.  Thanks!</div><div><br></div><div><br></div><div><div style="color:rgb(238,255,255);background-color:rgb(33,33,33);font-family:Menlo,Monaco,&quot;Courier New&quot;,monospace;font-size:12px;line-height:18px;white-space:pre"><div><span style="color:rgb(137,221,255)">@</span><span style="color:rgb(130,170,255)">directory</span><span style="color:rgb(137,221,255)">.</span><span style="color:rgb(130,170,255)">register</span></div><div><span style="color:rgb(199,146,234)">class</span> <span style="color:rgb(255,203,107)">BF5R</span><span style="color:rgb(137,221,255)">(</span><span style="color:rgb(195,232,141)">H777Radio</span><span style="color:rgb(137,221,255)">):</span></div><div>    VENDOR <span style="color:rgb(199,146,234)">=</span> <span style="color:rgb(137,221,255)">&quot;</span><span style="color:rgb(195,232,141)">Baofeng</span><span style="color:rgb(137,221,255)">&quot;</span></div><div>    MODEL <span style="color:rgb(199,146,234)">=</span> <span style="color:rgb(137,221,255)">&quot;</span><span style="color:rgb(195,232,141)">BF-5R</span><span style="color:rgb(137,221,255)">&quot;</span></div><div>    ALIASES <span style="color:rgb(199,146,234)">=</span> <span style="color:rgb(137,221,255)">[]</span></div><br><div>    VALID_BANDS <span style="color:rgb(199,146,234)">=</span> <span style="color:rgb(137,221,255)">(</span><span style="color:rgb(247,140,108)">400000000</span><span style="color:rgb(137,221,255)">,</span> <span style="color:rgb(247,140,108)">470000000</span><span style="color:rgb(137,221,255)">)</span></div><br><div>    _has_fm <span style="color:rgb(199,146,234)">=</span> <span style="color:rgb(247,140,108)">False</span></div><div>    _has_sidekey <span style="color:rgb(199,146,234)">=</span> <span style="color:rgb(247,140,108)">False</span></div><div>    _has_scanmodes <span style="color:rgb(199,146,234)">=</span> <span style="color:rgb(247,140,108)">False</span></div><div>    _has_scramble <span style="color:rgb(199,146,234)">=</span> <span style="color:rgb(247,140,108)">False</span></div><div>    </div><div>    POWER_LEVELS <span style="color:rgb(199,146,234)">=</span> <span style="color:rgb(137,221,255)">[</span>chirp_common<span style="color:rgb(137,221,255)">.</span>PowerLevel<span style="color:rgb(137,221,255)">(</span><span style="color:rgb(137,221,255)">&quot;</span><span style="color:rgb(195,232,141)">Low</span><span style="color:rgb(137,221,255)">&quot;</span><span style="color:rgb(137,221,255)">,</span> <span style="color:rgb(255,83,112)">watts</span><span style="color:rgb(199,146,234)">=</span><span style="color:rgb(247,140,108)">3.00</span><span style="color:rgb(137,221,255)">),</span></div><div>                    chirp_common<span style="color:rgb(137,221,255)">.</span>PowerLevel<span style="color:rgb(137,221,255)">(</span><span style="color:rgb(137,221,255)">&quot;</span><span style="color:rgb(195,232,141)">High</span><span style="color:rgb(137,221,255)">&quot;</span><span style="color:rgb(137,221,255)">,</span> <span style="color:rgb(255,83,112)">watts</span><span style="color:rgb(199,146,234)">=</span><span style="color:rgb(247,140,108)">5.00</span><span style="color:rgb(137,221,255)">)]</span></div><div>    </div><div>    <span style="color:rgb(137,221,255)">@</span><span style="color:rgb(178,204,214)">classmethod</span></div><div>    <span style="color:rgb(199,146,234)">def</span> <span style="color:rgb(130,170,255)">match_model</span><span style="color:rgb(137,221,255)">(</span><span style="color:rgb(255,83,112)">cls</span><span style="color:rgb(137,221,255)">,</span> <span style="color:rgb(255,83,112)">filedata</span><span style="color:rgb(137,221,255)">,</span> <span style="color:rgb(255,83,112)">filename</span><span style="color:rgb(137,221,255)">):</span></div><div>        <span style="color:rgb(84,84,84);font-style:italic"># This model is only ever matched via metadata</span></div><div>        <span style="color:rgb(137,221,255);font-style:italic">return</span> <span style="color:rgb(247,140,108)">False</span></div></div></div></div>