Giter Club home page Giter Club logo

rt_thread_tutorial's Introduction

rt_pthread_tutorial

The pthread tutorial for real-time control. Test in ubuntu 20.04 5.15.65-rt49 and ubuntu 18.04 5.4.19-rt11.

Isolate CPU

The isolated CPUs are not used by user space processes, only by the kernel. To improve the realtime performance, so you can run your task in the isolated CPU by setting CPU affinity.

$ sudo vim /etc/default/grub 

Write the current line

GRUB_CMDLINE_LINUX="isolcpus=0,1,2"

Then update the grub

$ sudo update-grub

Reboot and check the grub parameters

$ cat /proc/cmdline

Set CPU affinity

#include <pthread.h> // -lpthread

CPU_ZERO(&_mask); // reset the CPU set
CPU_SET(CPU_id, &_mask); // add the CPU core to the set, CPU_id from 0 to x (x base on your CPU)
pthread_setaffinity_np(pthread_self(), sizeof(_mask), &_mask);

Disable the E-cores in NUC12(i7-1260P 4P+8E)

Due to some unknown reasons, you may need to disable the E-cores.

Click F2 when start up, then enter the BIOS.

(1) "power,performance and cooling" -> "External Ambient Temperature Tolerance" -> set "user defined"

(2) "performance" -> "processor" -> "Active Atom Cores" -> set "0"

(3) Click F10 to save and reboot

rt_thread_tutorial's People

Contributors

shihao-feng-98 avatar

Stargazers

Geek2000IRX avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.