mirror of
https://github.com/whosmatt/uvmod
synced 2024-11-22 07:04:07 +00:00
added warning
This commit is contained in:
parent
f1344728a3
commit
e49809197f
22
README.md
22
README.md
@ -1,5 +1,18 @@
|
|||||||
# [CLICK HERE TO OPEN UVMOD](https://whosmatt.github.io/uvmod/)
|
# [CLICK HERE TO OPEN UVMOD](https://whosmatt.github.io/uvmod/)
|
||||||
## [中文版 Open Chinese Version (maintained independently)](https://uvmod.xanyi.eu.org/)
|
## [中文版 Open Chinese Version (maintained independently)](https://uvmod.xanyi.eu.org/)
|
||||||
|
## [Open Russian Version (maintained independently)](https://uvmod.valek.net.ru/)
|
||||||
|
## [Open Portugese Version (maintained independently)](https://meshtastic.pt/QuanSheng/)
|
||||||
|
|
||||||
|
### Info about v26/v27
|
||||||
|
|
||||||
|
UVMOD is based on v26 because the newer v27 firmware brings no important changes other than one small fix that only applies to a small number of units.
|
||||||
|
Depending on the factory calibration of some radios, the TX power above 435MHz can be lower than it should be due to a programming oversight.
|
||||||
|
v27 fixes this so that the TX power is always correct.
|
||||||
|
To see if your unit is affected you can either use a power meter, or you can use a receiver with rssi to check if the output power on the L setting is higher than the output power on the H setting.
|
||||||
|
|
||||||
|
For now, the russian and portugese version of UVMOD includes limited v27 support, so you can use those if your unit is affected.
|
||||||
|
|
||||||
|
We are working on a mod that fixes this in v26 as well.
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
@ -16,3 +29,12 @@ Mods are defined in [mods.js](mods.js), with an example mod to outline the patte
|
|||||||
Also __refer to the helper functions and documentation in__ [modframework.js](js/modframework.js).
|
Also __refer to the helper functions and documentation in__ [modframework.js](js/modframework.js).
|
||||||
|
|
||||||
The supported format for binary data is in the format of a hex string __without separators__. You can use find and replace to remove all `\x` from a regular hex string or directly export the correct format from a bytes object in python using `print(''.join('%02x'%i for i in BYTES_OBJECT))`.
|
The supported format for binary data is in the format of a hex string __without separators__. You can use find and replace to remove all `\x` from a regular hex string or directly export the correct format from a bytes object in python using `print(''.join('%02x'%i for i in BYTES_OBJECT))`.
|
||||||
|
|
||||||
|
## Statement regarding dangerous clones of UVMOD
|
||||||
|
|
||||||
|
The radio spectrum is used by many different people and organizations, some of which are very important to critical infrastructure. Modifying the firmware of a radio needs to be done with care and consideration for the consequences.
|
||||||
|
UVMOD makes it easy and accessible for anyone without any background knowledge to modify the firmware of their radio. __However, certain mods such as TX Unlock mods can not be used legally and safely without a certain amount of background knowledge because the behaviour of these mods is counterintuitive.__
|
||||||
|
UVMOD is designed to hide all high-risk mods behind a information section in the instructions to ensure that users are aware of the risks and consequences.
|
||||||
|
|
||||||
|
__Sadly, there has been one person who has cloned UVMOD and removed all of the safety precautions and warnings.__ The team behind UVMOD and the Quansheng modding scene do not condone this behavior and we strongly advise against using this clone.
|
||||||
|
__Use the links at the top of this file to access all approved versions.__
|
@ -86,7 +86,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#content-wrapper {
|
#content {
|
||||||
animation: fadeInFromBottom 0.7s ease-out;
|
animation: fadeInFromBottom 0.7s ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -113,6 +113,10 @@
|
|||||||
<!-- Content Wrapper -->
|
<!-- Content Wrapper -->
|
||||||
<div id="content-wrapper" class="d-flex flex-column" style="background-color: inherit;">
|
<div id="content-wrapper" class="d-flex flex-column" style="background-color: inherit;">
|
||||||
|
|
||||||
|
<div class="d-block px-2 py-2 text-center text-bold bg-danger">
|
||||||
|
<a href="https://github.com/whosmatt/uvmod#statement-regarding-dangerous-clones-of-uvmod" class="text-white">Warning: There are unauthorized clones of UVMOD designed with no regards for safety. Only use the original repository for the correct links! Click to learn more.</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Main Content -->
|
<!-- Main Content -->
|
||||||
<div id="content">
|
<div id="content">
|
||||||
|
|
||||||
@ -199,7 +203,7 @@
|
|||||||
Even worse, the radio will output a LOT of harmonics, on the outer parts of the spectrum, the
|
Even worse, the radio will output a LOT of harmonics, on the outer parts of the spectrum, the
|
||||||
harmonics even get stronger than the carrier signal.
|
harmonics even get stronger than the carrier signal.
|
||||||
<b>For example, transmitting on CB bands will transmit useless amounts of power on CB
|
<b>For example, transmitting on CB bands will transmit useless amounts of power on CB
|
||||||
(microwatts), while emitting significant amounts of power on several other frequencies.</b>
|
(microwatts), while emitting significant amounts of power on several other frequencies, many of which are illegal to transmit on.</b>
|
||||||
</li>
|
</li>
|
||||||
</li>
|
</li>
|
||||||
<li>You take full responsibility for your actions!</li>
|
<li>You take full responsibility for your actions!</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user