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
Cypress Kits
  • Products
  • Dev Tools
  • Cypress Kits
  • More
  • Cancel
Cypress Kits
Forum FreeRTOS ported to the PSoC 4
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Cypress Kits to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 21 replies
  • Subscribers 27 subscribers
  • Views 3359 views
  • Users 0 members are here
  • psoc4
  • freertos
Related

FreeRTOS ported to the PSoC 4

Former Member
Former Member over 11 years ago

I've ported FreeRTOS to PSoC 4 - which really was extremely trivial. It's simply the Cortex M0 port with some configuration & glue from the PSoC 5 demo.

The attached demo app creates three tasks that toggle the red, green and blue LEDs on the PSoC 4 pioneer board at slightly different rates, resulting in a pleasing (if somewhat psychedelic) light show. Adapting this demo for your own purposes should be straightforward.

Note that because the PSoC Capsense component makes (undocumented) use of the systick timer, it's not currently possible to use FreeRTOS and the PSoC Capsense component together.

Attachments:
FreeRTOSDemo.zip
  • Sign in to reply
  • Cancel

Top Replies

  • Former Member
    Former Member over 11 years ago in reply to Former Member +1
    Hello! You are confusing exception and interrupt vectors. In the ARM architecture you have an internal SYSTICK exception that gets triggered by the M3. The handler for this has to be installed in slot…
  • Former Member
    Former Member over 11 years ago

    Correction: The CapSense component does not use SysTick; the issue was an unrelated interrupt issue.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 11 years ago in reply to Former Member

    Nice job Nick. I downloaded that and it ran like a charm. Did you run into the problem where you have to enable interrupts before you start CapSense? It's caught me a few times.

     

    I added CapSense to your design and use it to vary the blink rate. I had to adjust the RAM allocation settings a bit though. In the CYDWR file I changed the stack to 0x80 (only used by main() anyway) and made the heap 0 (the task memory is allocated from a heap controlled by FreeRTOS). I also reduced the default task stack to 50 short ints. The CapSense needs a little more, so I doubled that value.

     

    -- Mark.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 11 years ago in reply to Former Member

    I did indeed run into that issue. Why did you need to shift the stack?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 11 years ago in reply to Former Member

    Well, your code worked fine - I did not have to change a thing.

     

    I then added a CapSense component and a task to monitor it periodically. That caused PSoC Creator to complain that I was out of RAM. I just made a few changes to make it fit. The main cause of the problem was that Creator assumes you want it to pick your stack and heap size. FreeRTOS does that for you and so I had a large amount of RAM allocated that was never going to be used. In the FreeRTOSDemo.cydwr file I changed the stack size to about 80 bytes, which is plenty to run main() and kick off the RTOS. I set the heap size to 0 bytes because it is not used by FreeRTOS at all.

     

    That freed up a lot of room for the task stacks and FreeRTOS heap. I believe that FreeRTOS allocates task control blocks and stacks out on array of size configTOTAL_HEAP_SIZE (ucHeap). I have not had a chance to really dig into RAM usage memory with FreeRTOS though - I just wanted to play with your "port", ran into a problem and solved it. I hope to take a closer look in the new year.

     

    -- Mark.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 11 years ago

    Ah, good catch. I had wondered why so much RAM was unavailable for the FreeRTOS stack.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 11 years ago

    Hello,

     

    Im very new to RTOS. I purchased a PSOC4 pioneer kit. i have gotten really familier with how to use it vie the example projects.  what would be the best way to get started using FreeRTOS. Where does my main() go? I would like to run the sample projects with FreeRTOS to learn. How can this be done?

     

    Steve,

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 11 years ago in reply to Former Member

    Start by trying out the demo project, and modifying the thread functions. main() is still your main, but it just sets up tasks and starts the RTOS; most of your code should go in the task functions. The FreeRTOS docs have a lot of detail, including tutorials.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 11 years ago

    I took Nicholas' project and it worked out of the box. I think that is good place to start for you, Steve. I'd never used Free RTOS before and I was learning about it in minutes.

    -- Mark.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 11 years ago

    Thanks guy

    I figured it out got it working. now i am trying to figure what benefits this gives me? watched a couple rtos video and they said the task scheduling techniques and queues between task.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 11 years ago in reply to Former Member

    Yes, I like to use an RTOS with CapSense. I put the CapSense scanning code in one task and push the results into a queue or a mailbox. Then I can write "application code" that just uses the queue for instructions - it does not have to worry about all the scanning and reading and interpreting finger activity.

    One nice feature of FreeRTOS is the idea of co-routines - these can save you a lot of SRAM because, unlike tasks, they share a stack.

    -- Mark.

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