element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum Micro-controller for Transceiver
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 10 replies
  • Answers 4 answers
  • Subscribers 393 subscribers
  • Views 745 views
  • Users 0 members are here
Related

Micro-controller for Transceiver

trevanian
trevanian over 9 years ago

I want to interface to a short burst data transceiver so I can format the outgoing raw data within an AT command set, which the transceiver module expects. The source device which sends the raw data (usually in ASCII) plugs directly into the transceiver serial RS232 port. Then the data is passed over the LO satellite network (through the module and RF) back to my SBD server. So I'll need to come up with the right algorithm to push that data out, the incoming payload is OK no need to format.

 

Was thinking of using a 328 micro-controller with Arduino UNO bootloader. What else is there to consider?

 

Theres a bunch of Youtube selfhelp stuff out there, but I want to make sure I'm not straying by being specific.

  • Sign in to reply
  • Cancel

Top Replies

  • musskopf
    musskopf over 9 years ago in reply to trevanian +1 suggested
    So as I imagine you would need 2 Serial ports or a way to switch between the Hpa and the SBD. You could try using the atmega328 and this software Serial https://www.arduino.cc/en/Tutorial/TwoPortReceive…
  • musskopf
    musskopf over 9 years ago in reply to trevanian +1 suggested
    If you prefer ARM, stick with the STM32F103 and it should cover all you need (and more!). This is the Dev board I was referring to: NUCLEO-F103RB - STMICROELECTRONICS - NUCLEO BOARD, STM32F103RBT6 MCU…
Parents
  • musskopf
    0 musskopf over 9 years ago

    Hi DLaw,

     

    So, from where is your data coming from? Remember this chip has a single hardware UART. If you can live with that is very likely you can do that using an ATMega328p. Just make sure you use an external crystal on your circuit as the internal oscillator is not stable enough for UART. Another thing to consider is the package size, remember that 328 has only 2Kb of RAM. You can also find some neat software serial libraries out there so you can debug your code while using the hardware UART for the communication. Btw, what's a SBD Serve?

     

    Cheers,

    Mike M.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • trevanian
    0 trevanian over 9 years ago in reply to musskopf

    The data is coming from a High-Powered-Amplifier (HPA) built-in micro-controller for monitoring and control purposes. It responds to incoming queries and commands (ASCII) with an outgoing ASCII stream back through the serial port, typically 20 to 40 bytes per message. The UART needs to get this ASCII string and format it into an AT command and send it out through the SBD (short burst data) module - and eventually to me. Not sure if BLE will work, would that be b/w the transceiver and the UART (eg. arduino), or my HPA and the transceiver, the HPA only has a serial port and sits outdoors, I've not dabbled in BLE.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • musskopf
    0 musskopf over 9 years ago in reply to trevanian

    So as I imagine you would need 2 Serial ports or a way to switch between the Hpa and the SBD. You could try using the atmega328 and this software Serial https://www.arduino.cc/en/Tutorial/TwoPortReceive, otherwise if you are familiar might be better using an Arm, the stm32f103 should do the trick STM32F103 - STMicroelectronics.  Get yourself a Nucleo Board if you would like to go this way....

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • trevanian
    0 trevanian over 9 years ago in reply to musskopf

    Thanks for you're response. My transceiver has one serial RS232 port, there are a few interface options off the STM32F103, in you're opinion which option would suit best, as the data loops into that between the HPA device and the SBD module? I'd prefer to use the ARM as this will be outside in a box in the tropics.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • musskopf
    0 musskopf over 9 years ago in reply to trevanian

    If you prefer ARM, stick with the STM32F103 and it should cover all you need (and more!). This is the Dev board I was referring to: NUCLEO-F103RB - STMICROELECTRONICS - NUCLEO BOARD, STM32F103RBT6 MCU | element14 Australia

     

    Good luck with your project!

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • trevanian
    0 trevanian over 9 years ago in reply to musskopf

    Thanks again. I ordered the ZET6 ARM last week off ebay, its on a dev board already, and the V2 debugger. I'm a Noob so one foot in front of the other - I'll respond when its up and going.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • trevanian
    0 trevanian over 9 years ago in reply to musskopf

    Whilst the gear is in transit.....Ultimately I want to get my project designed on just the one board, and I'm slowly wading through the miasma of learn-up stuff out there, but on this particular one time is my enemy. Do you know or recommend any prototyping design-house crowd that can fast track me through this?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • musskopf
    0 musskopf over 9 years ago in reply to trevanian

    Hi trevanian... sorry, I'm not aware of any. Although the solution sounds simple and probably a interesting project to work with, might be difficult to find any budget consulting to create a customized design. Let me know the HPA and SBD equipment models as well your personal e-mail and I'll see if I get someone to have a look on that for you.

     

    Cheers,

    Mike M.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • trevanian
    0 trevanian over 9 years ago in reply to musskopf

    Thanks Mike M. trevanian13@gmail.com

    I'll detail on the email, with pictures

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • trevanian
    0 trevanian over 9 years ago in reply to musskopf

    Thanks Mike M. trevanian13@gmail.com

    I'll detail on the email, with pictures

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube