chicken 630 Posted July 30, 2017 Author Share Posted July 30, 2017 Hmm, it's a while since I looked at it in detail. Channel spacing is 50KHz. If I remember correctly, bandpass was set to 20 or 15KHz. I stay away from building a transponder as there's a real risk of disrupting AIS traffic if done wrong. But if you want to go down that avenue, check out this project: https://github.com/peterantypas/ais_transponder chiase 1 Quote Link to post Share on other sites
chicken 630 Posted July 30, 2017 Author Share Posted July 30, 2017 Regarding your range problem: I program the firmware on my HATs with the debugger on the MSP430F5529 launchpad. If I don't power cycle (unplug and reconnect USB) after programming and before testing, I see elevated noise levels. I don't know the exact reason, but suspect that the JTAG traffic on USB introduces noise. Maybe there's a similar issue with the Discovery boards. Quote Link to post Share on other sites
chiase 1 Posted July 30, 2017 Share Posted July 30, 2017 Thanks Adrian! I'll try the configuration that you advise. I hope it is good as your dAISy HAT! P.s: I'm so impressive with your project! It's simple but it's so effective Quote Link to post Share on other sites
nazmibojan 0 Posted July 30, 2017 Share Posted July 30, 2017 Hi All, I have been develop dAISy using MSP430 and it worked when I tested dAISy in the coast. I tested dAISy in the case where there are many vessels in the coastal area. After that, I tested dAISy in the laboratory with single AIS Transponder that transmitted AIS signal every 3 minutes (because the transponder didn't move). I got the results that my dAISy couldn't receive AIS signal every time the transponder transmit AIS signal. dAISy only received a few of AIS data in the beginning of testing. But after that, dAISy couldn't receive anymore. I have been tested dAISy using MATSUTEC HA-02. Can you help me please? What is my problem? Thanks. Regards, Rian Quote Link to post Share on other sites
chicken 630 Posted July 30, 2017 Author Share Posted July 30, 2017 Hi Rian, Is this repeatable? I.e., when you reboot dAISy it works again for a few minutes? Quote Link to post Share on other sites
nazmibojan 0 Posted July 30, 2017 Share Posted July 30, 2017 No Chicken, It only worked once in the first trial. Is there the problem about transponder VHF antenna positioning or excessive power transmit by transponder? Thanks. -Rian Quote Link to post Share on other sites
chicken 630 Posted July 31, 2017 Author Share Posted July 31, 2017 Excessive power would be my guess if the receiver doesn't work anymore. The radio IC is only rated to an absolute max of 10 dBm, equivalent to 10mW. You can somewhat protect the radio with two parallel PIN diodes from RF to ground. One with cathode to GND and the other the opposite way. This clamps the signal to a maximum of less than +/- 0.7V, the equivalent of 10dBm. Though not sure how long that would help when directly connecting the receiver to an AIS transponder. Quote Link to post Share on other sites
chiase 1 Posted July 31, 2017 Share Posted July 31, 2017 Dear Adrian, I tested the configuration file that you sent me for Si4467. But result is not better. However, in interrupt service routine for Rx data clock, I don't check CCA condition (clear channel assessment, it belongs to RSSI threshold in MODEM_RSSI_THRESH register. I always read Rx Data pin and decode data (check preamble, flag 0x7e, ...)). Dose it makes lost message? Thanks Adrian! Quote Link to post Share on other sites
chicken 630 Posted July 31, 2017 Author Share Posted July 31, 2017 I usually have the check for the CCA condition turned off as well. It only did make sense for single-channel receivers where RSSI level can be used for more intelligent channel hopping (didn't make much of a difference). I still suspect noise to be your main issue. Quote Link to post Share on other sites
longjohn119 1 Posted July 31, 2017 Share Posted July 31, 2017 Initial test results dAISy Hat with an FT232 RS232 convert - Half wave vertical dipole at approx 30 ft fed with 80 ft 75 ohm RG-6 quad shield with balun at feed point (The mismatch is largely irrelevant in modern active front end **receivers**, transmitters are a different ballgame altogether) Noise, no Antenna = -126 dbm Noise with antenna = -123 dbm Results from 800+ messages: Minimum received signals = -117 dbm Maximum received signal = --67 dbm Average received signal = -91 dbm NOTES: (1) The more than acceptable 3db increase in noise from the antenna is mainly due to using quality coax and a vertical dipole with a proper balun which is a balanced antenna and tends to work more with the magnetic portion of the electromagnetic signal. A 1/4 wave vertical ground plane antenna would likely add another 3 - 6 db to the noise levels because it is an unbalanced antenna that works mainly with the electro (voltage) part of the electromagnetic signal and thus is more sensitive to RFI noise. Another engineering term for a vertical ground plane antenna is a Voltage Probe Antenna. However on most vessels a 1/4 to 5/8 wave vertical will be used since they are shorter (1/4) and/or are end fed rather than in the middle making them much easier to mount and feed on most smaller vessels. (2) While this could benefit from a 10 db preamp with input and output filters and scaling one of the 2 meter amatuer band designs would be relatively simple, trying to get there with only 5 volts is tough as most are designed for 12-14V. Plus you are going to need to use fairly large air coil or a slug tuned ferrite coils (like in IF circuits) which have a higher Q and thus lower loss. filters using SMT inductors while convenient and small are inherently low Q and lossy and that is why everyone is getting poor results putting a preamp with SMT filters in front of these. No preamp will increase the SNR of a receiver only increase it as they will amplify both the noise and the signal present on the input in equal amounts. The only way to lower noise is by decreasing the input bandwidth and filtering out the noise before it reaches the input to the preamp. (3) My receive range roughly tripled over a RTL dongle and doubled compared to a HackRF SDR. This is most likely due to the poor dynamic range and SNR of the 8 bit ADCs even in the otherwise well designed HackRF Now it's off to mate this with my boat's GPS and the output to a RS-422 converter so I can add it and the GPS to my Lowrance Elite 7 Ti NMEA inputs and I can give it on on the water test this weekend ....... chicken 1 Quote Link to post Share on other sites
nazmibojan 0 Posted July 31, 2017 Share Posted July 31, 2017 20 hours ago, chicken said: Excessive power would be my guess if the receiver doesn't work anymore. The radio IC is only rated to an absolute max of 10 dBm, equivalent to 10mW. You can somewhat protect the radio with two parallel PIN diodes from RF to ground. One with cathode to GND and the other the opposite way. This clamps the signal to a maximum of less than +/- 0.7V, the equivalent of 10dBm. Though not sure how long that would help when directly connecting the receiver to an AIS transponder. Ok thanks for your suggestion. I think i will use attenuator for the antenna port. I will try it first. Regards, Rian Quote Link to post Share on other sites
chicken 630 Posted August 1, 2017 Author Share Posted August 1, 2017 @nazmibojan your radio IC may be toast by now, so you may have to replace it. @longjohn119 thank you for the detailed report. My own knowledge about antennas is very basic. It's definitely much noisier around here in suburban Seattle. Also always interested how the receivers compare to SDRs, as basically it's a very specialized SDR. For a fairer comparison, you could try to add a bandpass filter in front of the SDRs. My 1-channel dAISy has a discrete LC filter built from SMT components, and it holds up surprisingly well to the SAW filter used on other models. In real world tests the advantage of the SAW was maybe 10% more messages. An external filtered preamp can help. I observed better range when adding this one in front of the HAT:https://store.uputronics.com/index.php?route=product/product&product_id=93 Adding a preamp on-board is still on my to-do list. I did early experiments which resulted in worse reception. However by now I know that the small dAISy is limited by noise from the USB side. I may give it a try with the HAT, which despite the integrated splitter performs as good as the single-channel dAISy, i.e. the design likely has a lower noise floor. chiase 1 Quote Link to post Share on other sites
longjohn119 1 Posted August 10, 2017 Share Posted August 10, 2017 The Mississippi River finally dropped to near normal levels so I got a chance to try this out 'on the water' fed to my Lowrance Elite 7 Ti through a RS-422 converter and then the AIS, GPS, as well as depth and water temp data are sent out the Elite TI via the built in WiFi (NMEA 0183 over Ethernet) to my Windows tablet running OpenCPN and other mapping software. I was getting approx. 7 miles range upstream and 7 miles range downstream which is on par, maybe slightly better than voice communications with a Marine Band radio when it was hooked up to the same antenna. Since it's mounted on the rear deck of a modified Jon boat the base of the antenna (1/4 wave vertical) is only a couple of feet above the water level which is the main limiter for range. Still 'seeing' a barge 7 miles out that is only moving 4-7 Mph gives me plenty of warning (At least an hour) and suits my main purpose perfectly. Also as I suspected the noise levels went up about 4 db with the 1/4 vertical over vertical 1/2 wave dipole I have at home although in practice I didn't notice any adverse affects. Quote Link to post Share on other sites
chicken 630 Posted August 11, 2017 Author Share Posted August 11, 2017 Happy to hear that, and thank you for the review on Tindie! I had to lookup how a Jon boat looks like With that low height, I'm surprised of the 7 miles range. Quote Link to post Share on other sites
nazmibojan 0 Posted August 15, 2017 Share Posted August 15, 2017 Hello @chicken, does dAISy support for receiving AIS Message 24 (Class B Static Data)? Regards, Nazmi Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.