Thats really great news! Will the new firmware (22.03.xx) also work with the omega2-lte? Or are there any restrictions because of the modem?
DocHardinger
@DocHardinger
Best posts made by DocHardinger
-
RE: ❗️Now available on Digikey: Omega2 LTE Global, Omega2 LTE, Omega2 Dash, Omega2 Pro, Tau Camera, 16-pin headers ❗️
-
RE: ⭐️ Beta Firmware Update: NodeJS v16.19, OpenWRT 22.03.3, PWM, and more! ⭐️
Great work! Really love it
Now that hardware pwm is possible using command line, will there be an easy way to use pwm. Before it was possible to useonion pwm <CHANNEL> <DUTY CYCLE> <FREQUENCY>
or should we write a python module which uses the documented command line methods?
Thx again for the great work
-
RE: ⭐️ Beta OpenWRT 22.03 firmware available! Your feedback is needed ⭐️
@Lazar-Demin
the main use is to communicate with an Analog digital converter. And many python libraries are using spidev so i think it makes sense to make this working again. Anyway if there is an alternative its also ok, but for now i didnt found a working solution in python3.I also tried to use spi-tools for testing the spi connection and there also seems to be some errors. But i will do some further tests later and give some feedback.
-
Using software pwm in OPenWrt 22.03.
Hi,
is there a way to use software emulated pwm in OpenWrt 22.03. with an Omega2+?
I know its possible in 18.06. but since 21.X OpenWrt removed the w1_gpio_custom package.Any ideas?
-
RE: ⭐️ Beta OpenWRT 22.03 firmware available! Your feedback is needed ⭐️
I found this post https://community.onion.io/post/25025 and added these patches to your firmware builder for openwrt 22.03. Build and flashing was successful but not tested it yet.
Dont know but maybe it helps you in your open issues. Especially for gpio mapping.
Latest posts made by DocHardinger
-
RE: Omega2S+ Crystal information
Hey,
Your zigbee gateway project sounds interesting. Is there a chance to get more informations about your project? -
RE: ❗️Now available on Digikey: Omega2 LTE Global, Omega2 LTE, Omega2 Dash, Omega2 Pro, Tau Camera, 16-pin headers ❗️
Thats really great news! Will the new firmware (22.03.xx) also work with the omega2-lte? Or are there any restrictions because of the modem?
-
RE: ⭐️ Beta Firmware Update: NodeJS v16.19, OpenWRT 22.03.3, PWM, and more! ⭐️
any news on the open points? especially spi and onewire? are you still working on this?
-
Syslog full of :Detach monitor that cannot receive messages:
Does anyone know where this comes from? We got a lot of messages in the syslog like this:
Wed Jul 5 12:49:37 2023 daemon.notice wpa_supplicant[1867]: CTRL_IFACE: Detach monitor that cannot receive messages: /var/run/iwinfo-wlan0-8831\x00 Wed Jul 5 12:49:53 2023 daemon.notice wpa_supplicant[1867]: CTRL_IFACE: Detach monitor that cannot receive messages: /var/run/iwinfo-wlan0-9166\x00 Wed Jul 5 12:50:08 2023 daemon.notice wpa_supplicant[1867]: CTRL_IFACE: Detach monitor that cannot receive messages: /var/run/iwinfo-wlan0-9177\x00 Wed Jul 5 12:50:24 2023 daemon.notice wpa_supplicant[1867]: CTRL_IFACE: Detach monitor that cannot receive messages: /var/run/iwinfo-wlan0-9188\x00 Wed Jul 5 13:41:42 2023 daemon.notice wpa_supplicant[1867]: wlan0: Unknown event 37
We are using omega2 pro with OpenWrt 22.03. . And there is also this Unknown event 37. What could this be?
Here is the network config:
config interface 'loopback' option device 'lo' option proto 'static' option ipaddr '127.0.0.1' option netmask '255.0.0.0' config globals 'globals' option ula_prefix 'fd7b:bda2:7125::/48' config device option name 'br-lan' option type 'bridge' option ipv6 '0' config interface 'lan' option device 'br-lan' option proto 'static' option netmask '255.255.255.0' option ip6assign '60' option ipaddr '192.168.4.1' config interface 'wlan' option device 'ra0' option proto 'static' option ipaddr '192.168.1.1' option netmask '255.255.255.0' option delegate '0' config interface 'Modem' option proto 'modemmanager' option metric '100' option pincode 'xxxx' option delegate '0' option device '/sys/devices/platform/101c0000.ehci/usb1/1-1' option auth 'none' option signalrate '5' option apn 'internet' option iptype 'ipv4v6' config device option name 'ra0' option ipv6 '0' config interface 'wwan' option proto 'dhcp' option metric '10'
and wireless config:
config wifi-device 'radio0' option type 'mac80211' option path 'platform/10300000.wmac' option band '2g' option channel 'auto' option cell_density '0' option htmode 'HT20' config wifi-iface 'default_radio0' option device 'radio0' option mode 'ap' option ifname 'ra0' option network 'wlan' option encryption 'psk2' option ssid '**********' option disassoc_low_ack '0' option key '**************' config wifi-iface '1686833404' option device 'radio0' option mode 'sta' option network 'wwan' option ssid '**********' option encryption 'psk2+ccmp' option key '*********' option disabled '1' config wifi-iface '1688221489' option device 'radio0' option mode 'sta' option network 'wwan' option ssid '*********' option encryption 'psk2+ccmp' option key '***********' option disabled '0'
-
RE: ⭐️ Beta Firmware Update: NodeJS v16.19, OpenWRT 22.03.3, PWM, and more! ⭐️
Great work! Really love it
Now that hardware pwm is possible using command line, will there be an easy way to use pwm. Before it was possible to useonion pwm <CHANNEL> <DUTY CYCLE> <FREQUENCY>
or should we write a python module which uses the documented command line methods?
Thx again for the great work
-
RE: ⭐️ Beta OpenWRT 22.03 firmware available! Your feedback is needed ⭐️
@Lazar-Demin
the main use is to communicate with an Analog digital converter. And many python libraries are using spidev so i think it makes sense to make this working again. Anyway if there is an alternative its also ok, but for now i didnt found a working solution in python3.I also tried to use spi-tools for testing the spi connection and there also seems to be some errors. But i will do some further tests later and give some feedback.
-
RE: ⭐️ Beta OpenWRT 22.03 firmware available! Your feedback is needed ⭐️
What about using 'python3-spidev' in OpenWrt 22.03.?
Or any ideas how to use spi in python3 on the new firmware? -
Using software pwm in OPenWrt 22.03.
Hi,
is there a way to use software emulated pwm in OpenWrt 22.03. with an Omega2+?
I know its possible in 18.06. but since 21.X OpenWrt removed the w1_gpio_custom package.Any ideas?
-
RE: ⭐️ Beta OpenWRT 22.03 firmware available! Your feedback is needed ⭐️
I found this post https://community.onion.io/post/25025 and added these patches to your firmware builder for openwrt 22.03. Build and flashing was successful but not tested it yet.
Dont know but maybe it helps you in your open issues. Especially for gpio mapping.