- Posts: 9
802.11b is a DSSS modulation protocol
- Villervalla
- Topic Author
- Offline
1 All the existing and cracked protocols and not a single one able to connect to a computer via WiFi?
2 What is required from the Deviation software to make the Tx to a WiFi node in a 802.11b WLAN?
Please Log in or Create an account to join the conversation.
- mwm
- Offline
There has been some work on getting a bluetooth connection working. That's probably preferable, as the major difference is shorter range and lower power. There are IP stacks that run over bluetooth, so anything you could do with WiFi you can do with bluetooth, but the interesting things have BT protocols that support them more efficiently. That can be done with the NRF24L01+ that can also be used for most of the RTF toy protocols.
Do not ask me questions via PM. Ask in the forums, where I'll answer if I can.
My remotely piloted vehicle ("drone") is a yacht.
Please Log in or Create an account to join the conversation.
- victzh
- Offline
- Posts: 1386
Why do you need it?
Please Log in or Create an account to join the conversation.
- mwm
- Offline
Better yet, splitting deviation between the STM32 in a 7E and one of these would probably be an easier path to a "ultimate" 7E than trying to replace the STM chip on a 7E. Depending on how much stuff you could push out to the 8266.
Do not ask me questions via PM. Ask in the forums, where I'll answer if I can.
My remotely piloted vehicle ("drone") is a yacht.
Please Log in or Create an account to join the conversation.
- victzh
- Offline
- Posts: 1386
The problem with offloading stuff to ESP8266 is quite narrow interface - not many pins are there. People do wonders with it, putting various programming languages on it etc, sure. But it needs to be explored can we put all the protocol work in it - does it have enough pins to control the other radios on one hand and be able to communicate with the mixer output from the main processor. And protocol work is not much, the most complicated pieces are in the GUI, as far as I understand, and it's hard to imagine another pretty thin and well defined interface between the main processor and this add-on than the protocol work.
Please Log in or Create an account to join the conversation.
- mwm
- Offline
I agree, the GUI is what really needs to move. Since the 7E only has one protocol loaded at a time, there's not much savings there. In theory, it could be done with one high-speed UART that passes input values to the ESP and gets back display updates. I'd have to check the specs to see if the SPI & serial ports share pins, but if not it would work fine - assuming the serial port is fast enough for the LCD updates.
Do not ask me questions via PM. Ask in the forums, where I'll answer if I can.
My remotely piloted vehicle ("drone") is a yacht.
Please Log in or Create an account to join the conversation.
- Villervalla
- Topic Author
- Offline
- Posts: 9
Please Log in or Create an account to join the conversation.
- SirDomsen
- Offline
www.aliexpress.com/item/The-strongest-ve...1e-bf42-eb26b23a6942
they write something about 4M flash?
Perhaps this could really help the small CPUed Devos out of their mess!
Please Log in or Create an account to join the conversation.
- Villervalla
- Topic Author
- Offline
- Posts: 9
Please Log in or Create an account to join the conversation.
- mwm
- Offline
I'm particularly interested in why you'd want Wifi instead of bluetooth. Bluetooth has been suggested a number of times, and is actively being pursued. The advantages of wifi have a noticeable cost, and I can't think of any application would benefit from them.
Do not ask me questions via PM. Ask in the forums, where I'll answer if I can.
My remotely piloted vehicle ("drone") is a yacht.
Please Log in or Create an account to join the conversation.
- victzh
- Offline
- Posts: 1386
But it is to be seen how so close proximity to another emitter of RF - working radio - influences WiFi and vice versa.
Please Log in or Create an account to join the conversation.
- Fernandez
- Offline
- Posts: 983
Ultimate LRS, telemetry and RC link, for big range; www.itluxembourg.lu/site/
OpenLRS, openlrsng.org/
Oplink modems, as used embedded in Revo Openpilot github.com/TauLabs/TauLabs/wiki/User-Guide:-OPLink-Mini
Please Log in or Create an account to join the conversation.
- Villervalla
- Topic Author
- Offline
- Posts: 9
I noticed that the CYRF6936 is a DSSS modulation system and that the old WiFi protocol 802.11b is so too, in the same frequency spectrum. My thougt was that it would be possible make a protocol, and a matching driver, without having to make any fysical mods to the Tx.
Please Log in or Create an account to join the conversation.
- victzh
- Offline
- Posts: 1386
Please Log in or Create an account to join the conversation.
- magic_marty
- Offline
- Posts: 706
Personally i would not want to have the ability to update firmware wirelessly do to the possibility of any lost packet would corrupt the install...needs to be usb only IMO..
Please Log in or Create an account to join the conversation.
- victzh
- Offline
- Posts: 1386
Please Log in or Create an account to join the conversation.
- mwm
- Offline
But even then, things get fuzzy. For instance, unless your web app provided by the Devo is going do most of the computation on the Devo, the JS that you run in the browser could also be run as part of an IOS or Android app. In fact, PB was working on a web-based config program using technology chosen specifically so he could turn it into an app.
Of course, once you've got a mobile or desktop app that works using BT file sharing, it should also work using an OTG cable - so you could use it on a Devo without having to put a network stack on it. That wouldn't be true of a web server based solution running on the Devo.
Do not ask me questions via PM. Ask in the forums, where I'll answer if I can.
My remotely piloted vehicle ("drone") is a yacht.
Please Log in or Create an account to join the conversation.
- Villervalla
- Topic Author
- Offline
- Posts: 9
If memory capacity in the Tx is an issue for WiFi, perhaps WiFi compatibility is yet an other a reason to develop a memory expand mod?
Please Log in or Create an account to join the conversation.
- mwm
- Offline
Besides, victzh has already a mod that works around that issue for all of them - just add a combined mcu/rf module so you can run the stack on the module. You could add that plus a multimodule to most systems with the only real difficulty being space inside the transmitter. Of course, memory on the 7E is so tight (as in, single-digit bytes to spare) that we probably can't support even that much of a mod. I know I've disabled most of my recent additions to the code to get things to fit.
Do not ask me questions via PM. Ask in the forums, where I'll answer if I can.
My remotely piloted vehicle ("drone") is a yacht.
Please Log in or Create an account to join the conversation.
- Villervalla
- Topic Author
- Offline
- Posts: 9
have any one tried to connect a Bluetooth dongle or a WiFi dongle to the Tx with an OTG USB cable?
Please Log in or Create an account to join the conversation.
- Home
- Forum
- Development
- Protocol Development
- 802.11b is a DSSS modulation protocol