element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • 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 & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • 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
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • 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
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Programming for an embedded app
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 37 replies
  • Subscribers 680 subscribers
  • Views 3697 views
  • Users 0 members are here
  • raspberry_pi_space
Related

Programming for an embedded app

Former Member
Former Member over 10 years ago

Background: I need to convert a 200 kHz encoder pulse train to 47.5 kHz. I tried using the Arduino Nano but it topped out at 8 kHz. Is used an ISR triggered on the rising edge of the encoder pulse and did floating point addition to determine when I should output a pulse. I know FP math in an ISR is not a good idea in general but it was simple math and the Arduino couldn't output faster than 8 kHz even w/o any ISR processing. Someone suggest using the Raspberry so I am attempting it. I have the Raspberry Pi 2 900 MHz system.

 

Main Questions:

  1. Is it possible to booth the system and auto load an executable w/o having to login? I want it to run like an embedded system.
  2. I want to write the code in my MS Visual C environment. How do I compile it for running on the Raspberry. Do I copy the code on to the SD card and compile and run on the Raspberry?

 

These are my main questions. I am a newbie using this and don't know all the specific steps from start to finish. I do have the Raspberry up and running but somewhat stuck after that. My internet is slow and it take forever to surf and find stuff. Is there one or two locations that can show me how to write a program from scratch. The Arduino code is less than 30 lines.


  • Sign in to reply
  • Cancel
Parents
  • Former Member
    0 Former Member over 10 years ago

    Is there one or two locations that can show me how to write a program from scratch.

     

    From scratch, in a nutshell .....

     

    If you used Visual Studio C/C++ already, then you do not need a lesson in the C/C++ languages themselves.  For C/C++ programming, you'll need to get used to employing two basic tools:

    1. a GUI source code editor
    2. the gcc Compiler

     

    For #1, I prefer the `gedit` tool; for #2, I use the `gcc` tool.  Get them like this:

     

         sudo apt-get install gedit gcc

     

    Another good tool for C/C++ development is `make`.  If `which make` doesn't show you that you already have it, then do this:

     

         sudo apt-get install make

     

    The `make` utility, while quirky, allows you to automate compiling and perform maintenance tasks related to source code, libraries, and executables.  Actually, a "Makefile" can specify almost anything that you'd like.

     

    A simplistic example:

    • Establish a source repository.  E.g. I have one being a folder called "src" under my home directory.
    • Under $HOME/src, create a folder called "hello".
    • Open a terminal window and execute:

         cd $HOME/src/hello

         gedit hello.c

    • Enter the following lines, save, and then exit from gedit:

         #include <stdio.h>

     

         int main ( int argc, char **argv ) {

              printf ( "Howdy, y\'all\n" );

              return 0;

         }

    • Still in $HOME/src/hello, execute:

         gcc -o hello hello.c

    • Execute the compiled program:

         hello

     

    Some C/C++/gdb/make tutorials:

    http://www3.ntu.edu.sg/home/ehchua/programming/cpp/gcc_make.html

    http://pages.cs.wisc.edu/~beechung/ref/gcc-intro.html

    http://cseweb.ucsd.edu/classes/fa09/cse141/tutorial_gcc_gdb.html


    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to Former Member

    How do I get a display to work with gedit? I get an error "could not open X display".  I don't know what the possible values for X in "gedit --display=X" are.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to Former Member

    What OS did you install?  Most folks use Raspbian (Raspberry Pi flavor of Debian) or a flavor of Ubuntu.  I mentioned that above.

     

    See https://www.raspberrypi.org/downloads/

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to Former Member

    Raspian

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to Former Member

    Wrote this program as suggested above.

     

    #include <stdio.h>

     

         int main ( int argc, char **argv ) {

              printf ( "Howdy, y\'all\n" );

              return 0;

         }

    • Still in $HOME/src/hello, execute:

         gcc -o hello hello.c

    • Execute the compiled program:

         hello

     

    >> I just wanted to see that I could make it work. I don't recall having so many problems when I was using QNX many years ago but it won't execute. I get no errors and see hello in the directory as an executable (ls -l) but I get an error "hello: command not found". I changed the output file name to "test" and run it - I get no error but get no output. I know I am doing something stupid but I can't figure it out. I would have though there were some libraries somewhere that I would have to link to.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • clem57
    0 clem57 over 10 years ago in reply to Former Member

    ./hello is correct way to execute if you are in the current directory for hello

    C

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • clem57
    0 clem57 over 10 years ago in reply to Former Member

    ./hello is correct way to execute if you are in the current directory for hello

    C

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
  • Former Member
    0 Former Member over 10 years ago in reply to clem57

    Thanks VERY much.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to clem57

    Thanks, Clem.  Some times I forget that my /etc/profile contains a statement that puts the current directory in the path:

     

         export PATH=.:$HOME/bin:$PATH

     

    So, Paul, what is located as an executable depends on the value of $PATH.  This is analogous to %PATH% in Windows.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to Former Member

    Paul,

     

    You might recall that in Windows, you can also permanently change the %PATH% value.  This can be done with REGEDIT or one of the Windows 3rd party utilities.  I forget the Windows registry variable name as I haven't done Windows programming in quite a while.

     

    In /etc/profile, I also included the $HOME/bin element so that I can develop private or speculative executables for use while logged in without having to install them somewhere.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to Former Member

    I was away for a while and unable to try anything but I am back on the project and having problems with wiringPi. I downloaded everything a week ago so I'm sure I have the latest stuff. I got the program to build and I can run. I forgot to execute with root privileges but after executing with the sudo command the program executes. I can't seem to set and control and of the IO pins. I used wiringPiSetup() and used the logical pin numbers (2 for GPIO02 - header pin 3, 4 for GPIO04 - header pin 7) for pinMode(), digitalWrite() and digitalRead(). I had no luck seeing a low or a high on the pins I tried. I used a voltmeter to check the pins. I also tried wiringPiSetupPhys() and used the actual header pin numbers (3 for GPIO02, 7 for GPIO04).

     

    I then tried to set all GPIO as outputs and set them low using a loop from i=2 to i<27. This seemed to set previous pins that were high to low but I'm not sure it was because I set them to zero because the program actually hung the system and I had to actually disconnect power to regain control. I suspect that the pin number being passed to the pinMode() and digitalWrite() is writing to somewhere that I don't expect it to.

     

    I'm using Raspberry Pi 2 Model V1.1. Looking at the wiringPi.c code it looks like this model is supported. I am assuming that I am doing something wrong but I can't seem to figure it out. Anyone have any hints they can provide?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • screamingtiger
    0 screamingtiger over 10 years ago in reply to Former Member

    Try the command "gpio readall"

     

    That will get you the correct pin numbers.  I am using Wiring pi extensively on my rpi 2. Try posting your code too.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to screamingtiger

    gpio readall command was an eye opener. Nice tool! My documentation that I was using for the pin assignments had the BCM numbering in bold and the wPi numbering greyed out even though the title on the diagram was Raspberry Pi2 GPIO Header. I guess I should have tried that numbering scheme since I wasn't getting anywhere with the others. My IO pins are now under control. Minor logic tweak in code to sort out and then performance testing. Thanks for help. Sorry for the trouble. Cheers.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • screamingtiger
    0 screamingtiger over 10 years ago in reply to Former Member

    If you like my answer, can you mark it helpful or correct?  I don't get very many of them.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to screamingtiger

    Tell me how. Everyone's input has been great.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • screamingtiger
    0 screamingtiger over 10 years ago in reply to Former Member

    YOu may not be able to since it is assumed answered.  If you can, at the top not sure if you mark it as unanswered again.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
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