Maksim Paimushkin
Maksim Paimushkin
Common problems and solutions for rtl8723bu: 1. Check/change antenna 2. Very bad signal with AP (don't look on signal strength in most case it's a lie)
Sorry @dgibson but then for nodes it's look a little bit strange, because you can remove whole node and re-create same node in different dts, BUT obsolete location will be...
@dgibson I think after that a fair point, you understood I wanted to trace history path of property/node/label from first dts up to the latest when I asked about #62
@dgibson for example, command to generate full annotated final DTS file ``` cpp -nostdinc -undef -D__DTS__ \ -x assembler-with-cpp \ -I ~/linux/include/ -I ~/linux/arch/arm/boot/dts -I ~/linux/scripts/dtc/include-prefixes/ \ ~/linux/arch/arm64/boot/dts/allwinner/sun50i-h5-bananapi-m2-plus.dts | \...
Hi @dgibson thanks for your review and comments [here](https://github.com/bmx666/dtc/commit/b10c3f062e845e8f2dca99fa6cf8559ec3c5bb44) I did refactoring little bit and switch on new dtc flag **--show-deleted** instead of using annotations [here](https://github.com/bmx666/dtc/commit/a5e50600a4107f418d2768b0ca9f650fe3dfc3c1) It still in WIP,...
Hi @dgibson , unfortunately solution without "was_deleted" is much worse and it doesn't cover all cases. It inserts and left nodes and properties, if dtc parse `/delete-*/` for non-existing nodes...
Hi @dgibson sorry for long delay, I replaced `was_deleted` on `comment_deleted`. Difference between `deleted` and `comment_deleted` is simple: if dtc option `--comment-deleted` is enabled then all nodes, labels and properties...
Hi @drunkendaddy, drawable for thumbs is more complicated than a just image See here for API19 and lower: https://github.com/apptik/MultiSlider/blob/master/lib/src/main/res/drawable/multislider_thumb_material.xml See here for API21 and higher: https://github.com/apptik/MultiSlider/blob/master/lib/src/main/res/drawable-v21/multislider_thumb_material_anim.xml And docs from Android...
Hi @KamikX, workaround ```java MultiSlider multiSlider = findViewById(R.id.range_slider); if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) { ColorStateList colorStateListRipple = new ColorStateList( new int[][] {{0}}, new int[] {Color.GREEN} // ripple color ); RippleDrawable rippleDrawable...
It's library internal check logic. You can't set min value greater than internal max and vice versa. That's why you get min value = 100.