GithubHelp home page GithubHelp logo

coretick's Introduction

CoreTick

Measuring MCU cycles using DWT

Another Cortex-M feature can be used as well. That's DWT -> here is a link to the CM3 manual about DWT.ย 

In short, it is an always-on cycle counter that ticks away with execution, just like our SysTick does. So it can be repurposed to count cycles, through the same set of programming interface that we called CoreTick.

coretick(): initialize the DWT cycle counter; Unlock may be required. The code itself is otherwise fair straight forward.
tick(): return the current cycle count;
coretick_delayms(): delay a user-specified period, in ms. It mimics the systick_delayms() routine;
coretick_delayus(): delay a user-specified period, in us. It mimics the systick_delayus() routine;

Typical application:

	coretick_init();								//reset coretick
	while (1) {
		IO_FLP(LED_PORT, LED);				//flip led

		time0=ticks();                //time stamp time0
		coretick_delayms(LED_DLY);    //delay using coretick
		time1=ticks() - time0;        //time stamp time1
		if (time1>10) NOP();          //break point
	};
}

More details here: https://dannyelectronics.wordpress.com/2017/06/15/coretick-another-mcu-cycle-counter/

coretick's People

Contributors

dannyf00 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.