Interrupts in Detail. A hardware and software look at interrupts

Size: px
Start display at page:

Download "Interrupts in Detail. A hardware and software look at interrupts"

Transcription

1 Interrupts in Detail A hardware and software look at interrupts

2 Blackfin MASKS and Latches Same hardware in concept as previous slides

3 The standard instruction cycle RESET THE PROCESSOR RESET* (ACTIVE low) EXECUTING YOUR PROGRAM UNTIL POWER IS REMOVED INSTR PHASE 1 FETCH AN INSTRUCTION FROM PROGRAM MEMORY INSTR PHASE 4 WRITE BACK THE RESULT INSTR PHASE 2 DECODE THE INSTRUCTION AND FETCH ANY VALUES NEEDED FROM REGISTER OR MEMORY INSTR PHASE 3 EXECUTE THE INSTRUCTION

4 The standard instruction cycle with external device having important data RESET THE PROCESSOR RESET* (ACTIVE low) 16-bits INSTR PHASE 1 FETCH AN INSTRUCTION FROM PROGRAM MEMORY INSTR PHASE 4 WRITE BACK THE RESULT EXTERNAL HARDWARE This is the data Control signal Thanks Processor has received data INSTR PHASE 2 DECODE THE INSTRUCTION AND FETCH ANY VALUES NEEDED FROM REGISTER OR MEMORY INSTR PHASE 3 EXECUTE THE INSTRUCTION Check if ready Control signal I have data for you

5 The wait till ready approach of reading data from external device In decode phase read control register value In execute phase check if 1 -- keep waiting (fetch-decode-execute-writeback instruction cycle) until the control value changes from 0 (device not ready) to 1 (device ready) When 1 go to a different part of your program code to read the data e.g. call ReadData( ) Then your program must send an acknowledge back to device that the data has been read. e.g. call AcknowledgeReadData( ). The device can then go and get more values for you. PROBLEM: You have no time to do anything else other than wait Not a problem if waiting for this device is the only thing you want to do with the processor

6 The Poll approach of getting data Not much waiting but a lot of doing read control register value of device 1 -- if 1 go to a different part of the code to read the data (ReadData1( ) ) after reading the data send an acknowledge signal back to device 1 (AcknowledgeReadData1( ) ) -- if 0 go and read the control value of device 2 don t worry about device 1 for some time read control register value of device 2 -- if 1 go to a different part of the code to read the data (ReadData2() ) after reading the data send an acknowledge signal back to device 2 (AcknowledgeReadData2( ) ) -- if 0 go and read the control value of device 3 don t worry about device 2 and 3 for some time ETC PROBLEM: What happens if, while you are handling device 2, device 1 has time sensitive information that will disappear if device 1 is not serviced immediately

7 Interrupt Approach basic idea Extra phase in instruction cycle RESET THE PROCESSOR RESET* (ACTIVE low) CONTINUE AS BEFORE DO ISR yes Acknowledge Request done NO PHASE ANY- TIME CHECK IF AN INTERRUPT REQUEST HAS OCCURRED PHASE 1 FETCH AN INSTRUCTION FROM NORMAL (NOT ISR) PROGRAM MEMORY PHASE 4 WRITE BACK THE ANSWER CONTROL SIGNAL DATA READY SIGNAL BECOMES INTERRUPT REQUEST PHASE 2 DECODE THE INSTRUCTION AND FETCH ANY VALUES NEEDED FROM REGISTER OR MEMORY PHASE 3 EXECUTE THE INSTRUCTION 16-bits data EXTERNAL HARDWARE

8 Simple model of interrupts INT Every instruction has four phases that execute in turn Next instruction s phase is stopped ISR executed Blocked Instruction is restarted after ISR RTI instruction ISR Instr1 ISR Instr2 ISR Instr3 RTI

9 Real Life -- Processor has pipelined instructions Decod Execut Writebac Pipelining still means that each instruction takes 4 cycles to complete However a new instruction only takes an extra 1 cycle to complet So overall the processor is running 4 times faster

10 Blackfin 10 stage Pipeline

11 Real Life -- Processor has pipelined instructions Writebac INT

12 Real Life -- Processor has pipelined instructions e e k ISR F1 ISR F2 ISR D1 ISR ISR D2 ISR E1 RTI F ISR ISR E2 ISR W1 RTI ISR ISR W INT

13 Real Life -- Processor has pipelined instructions h de te ck ISR F1 ISR F2 ISR D1 ISR ISR D2 ISR E1 RTI F ISR ISR E2 ISR W1 RTI D ISR ISR W2 RTI E Fe Dec RT INT After RTI phase (RETI register has been recovered) The processor know enough to be able to restart the pipeline

14 Real Life -- Processor has pipelined instructions RTI F ISR ISR E2 ISR W1 RTI D ISR ISR W2 RTI E RTI W W E After RTI phase RETI register has been recovered It can be REGISTER FORWARDED TO THE PC Without waiting to actually be stored somewhere The processor know enough to be able to restart the pipeline

15 Blackfin interrupt pipeline looks like this (see reference sheet)

16 Real Life -- What happens if Interrupt occurs between CC = R1 <= R2 F CC = F IF CC D CC = D IF CC E CC = E IF CC W CC = IF CC JUMP AFTER ISR We must be able to complete IF CC operation Condition code bit CC is therefore a INT F IF CC RTI E D IF CC RTI W E IF CC D E WriW non-volatile register Part of the Blackfin STAT register

17 Your Assignment 2 Watchdog time ISR DEFECT written as subroutine by mistake WATCHDOG EXAMPLE NOT CORE- TIMER NEEDED FOR ASSIGNMENT 2

18 CLI stop interrupts (CLear IMASK a Makes sense as SSYNC means finis STI -- restart interrupts (STore R

19 This is not ending in RTI but RTS If you put this into EVT (Event Vector Table) It will fit BUT CRASH THE SYSTEM WHEN USED

20 Your Assignment 2 Watchdog time ISR -- Correctly written

21 Save CC (ASTAT) and then any register used (P0 Compare uses R7 but does not cha Always jump So R7 is never actually loaded usin Recover P0 And then CC This code is simply to fix the AN pipeline code

22 Compiler knows that going to Call a subroutine during ISR So saves every register that might get changed as all registers are non-volatile during ISR

23 SUB code ISR code body

24 ISR Must be fast Step 1 turn on C++ Optimizer

25 Turn on optimizer for ISR No optimizations possible

26 Look at new version of ISR code without UpdateSimulation call

27

28 Writing an ASM ISR for Post Lab 3 Quiz Step 1 Write the subroutine version of the code to be used inside the ISR Step 2 Identify all registers being used All volatile AND non-volatile Step 3 Start ASM code as follows.section program.global _ISR _ISR: Special code to handle silicon race issues (State don t include

29 .section program.global _ISR _ISR: Special code to handle silicon race issues (State don t include code) Link 0x0 (Saves RETS and FP) [--SP] = ASTAT Show the volatile AND nonvolatile registers being saved to stack (eg. [--SP] = R0; [--SP] = P0; [--SP] = R1; [--SP] = P2 etc.) Essentially the subroutine code (optimized as much as possible) REMOVE RTS Show the registers being recovered from the stack (reverse order) (eg. Etc. P2 = [SP++]; R1 = [SP++]; P0 [SP++]; R0 = [SP++]) ASTAT = [SP++]; UNLINK RTI -- and the most important difference REMEMBER FAST ISR means only save registers used no more

30 NMI interrupt Looks the same But different hardware causes interrupt Means use RETN register not RETI

SNJB College of Engineering Department of Computer Engineering

SNJB College of Engineering Department of Computer Engineering 1. Intel s programmable device (8253) facilitates the generation of accurate time delays. a) counter b) timer c) both a & b d) none of these 2. The programmable timer device (8253) contains three independent

More information

Interfacing the Enhanced Parallel Port Version 1.0

Interfacing the Enhanced Parallel Port Version 1.0 Interfacing the Enhanced Parallel Port Version 1.0 Disclaimer : While every effort has been made to make sure the information in this document is correct, the author can not be liable for any damages whatsoever

More information

Consider executing this sequence of instructions in the pipeline:

Consider executing this sequence of instructions in the pipeline: Branch Hazards Handling Branches 1 Consider executing this sequence of instructions in the pipeline: address instruction ---------------------------- Issue: 36: sub $10, $4, $8 40: beq $1, $3, 72 44: and

More information

Control Hazards. EE 457 Unit 6c. Option 1: Stalling. An Opening Example. Control Hazards

Control Hazards. EE 457 Unit 6c. Option 1: Stalling. An Opening Example. Control Hazards Hazas EE 7 6c Hazas (branch) hazas are named such because they deal with issues related to program control instructions (branch, jump, subroutine call, etc) There is some delay in determining a branch

More information

Analog Devices Welcomes Hittite Microwave Corporation NO CONTENT ON THE ATTACHED DOCUMENT HAS CHANGED

Analog Devices Welcomes Hittite Microwave Corporation NO CONTENT ON THE ATTACHED DOCUMENT HAS CHANGED Analog Devices Welcomes Hittite Microwave Corporation NO CONTENT ON THE ATTACHED DOCUMENT HAS CHANGED www.analog.com www.hittite.com THIS PAGE INTENTIONALLY LEFT BLANK Frequency Hopping with Hittite PLLVCOs

More information

CP316 Microprocessor Sysytems and Interfacing Evaluation Results Wilfrid Laurier University

CP316 Microprocessor Sysytems and Interfacing Evaluation Results Wilfrid Laurier University CP316 Microprocessor Sysytems and Interfacing Terry Sturtevant This evaluation for the purpose of evaluating my teaching methods and your impressions of the course. It is anonymous and you can omit any

More information

External Interrupts Pin Change Interrupts

External Interrupts Pin Change Interrupts ECE3411 Fall 2015 Lecture 3c. External Interrupts Pin Change Interrupts Marten van Dijk, Syed Kamran Haider Department of Electrical & Computer Engineering University of Connecticut Email: vandijk, syed.haider@engr.uconn.edu

More information

EE457 Lab 6 Design of a Pipelined CPU Lab 6 Part 4 Questions 10/29/2006. Lecture by Gandhi Puvvada. University of Southern California

EE457 Lab 6 Design of a Pipelined CPU Lab 6 Part 4 Questions 10/29/2006. Lecture by Gandhi Puvvada. University of Southern California EE45 Lab 6 Design of a Pipelined CPU Lab 6 Part 4 Questions 0/29/06 Lecture by Gandhi Puvvada University of Southern California 0/29/06 / 32 C Copyright 06 Gandhi Puvvada Thanks to Ray Madani and Binh

More information

Our plan for making the lives of people with autism and their families and carers better

Our plan for making the lives of people with autism and their families and carers better Our plan for making the lives of people with autism and their families and carers better Please tell us what you think Easy read 1 Who we are We are part of the Government in Northern Ireland. What this

More information

VIEW AS Fit Page! PRESS PgDn to advance slides!

VIEW AS Fit Page! PRESS PgDn to advance slides! VIEW AS Fit Page! PRESS PgDn to advance slides! UNDERSTAND REALIZE CHANGE WHY??? CHANGE THE PROCESSES OF YOUR BUSINESS CONNECTING the DOTS Customer Focus (W s) Customer Focused Metrics Customer Focused

More information

Computer Architecture ELEC2401 & ELEC3441

Computer Architecture ELEC2401 & ELEC3441 Last Time Pipeline Computer Architecture ELEC2401 & ELEC3441 Lecture 6 Pipelining (2) Dr. Hayden Kwok-Hay So Department of Electrical and Electronic Engineering Structural Control n On every cycle, the

More information

Promotional content for the

Promotional content for the Cancer Support Promotional content for the Cancer Support Voice Mail 3 Record and broadcast on your company s voice mail system. Company Letter 4 Print and send on your company letterhead. Newsletter Article

More information

Understanding Battery Life Contributors. MKT Rev A

Understanding Battery Life Contributors. MKT Rev A Understanding Battery Life Contributors 1 All AA batteries are not equal Independent 3 rd party testing shows about very large variance in AA battery capacity. Zinc-Manganese Dioxide should be avoided

More information

Stanford Youth Diabetes Coaches Program Instructor Guide Class #1: What is Diabetes? What is a Diabetes Coach? Sample

Stanford Youth Diabetes Coaches Program Instructor Guide Class #1: What is Diabetes? What is a Diabetes Coach? Sample Note to Instructors: YOU SHOULD HAVE ENOUGH COPIES OF THE QUIZ AND THE HOMEWORK TO PASS OUT TO EACH STUDENT. Be sure to use the NOTES view in Powerpoint for what to cover during class. It is important

More information

2013 JadaCastellari.com all rights reserved

2013 JadaCastellari.com all rights reserved Muscle building fundamentals If you are new to building muscle, or you have not built as much muscle as you would like to yet, then this material is for you.... As you read through this material I will

More information

Newcastle disease and Newcastle disease vaccination in village poultry. A training manual

Newcastle disease and Newcastle disease vaccination in village poultry. A training manual Newcastle disease and Newcastle disease vaccination in village poultry A training manual National Rural Poultry Centre PO Box 81 Likuni Malawi http://www.ruralpoultrymalawi.org Acknowledgements and Introduction

More information

You can find a wealth of information and extra support on epilepsy in the following places:

You can find a wealth of information and extra support on epilepsy in the following places: Seizure Diary Epilepsy Introduction Some people find that their brain tumour causes epilepsy. Our brain functions on electrical activity. When there is a sudden abnormal burst of this electrical activity,

More information

about Eat Stop Eat is that there is the equivalent of two days a week where you don t have to worry about what you eat.

about Eat Stop Eat is that there is the equivalent of two days a week where you don t have to worry about what you eat. Brad Pilon 1 2 3 ! For many people, the best thing about Eat Stop Eat is that there is the equivalent of two days a week where you don t have to worry about what you eat.! However, this still means there

More information

Uncovering Significant Emotional Events (S.E.E.'s):

Uncovering Significant Emotional Events (S.E.E.'s): Uncovering Significant Emotional Events (S.E.E.'s): In this article I am going to explain to you what S.E.E. s are and why uncovering them is so important to achieve social confidence. You will read almost

More information

DATA SHEET LLINK TM -08 for IPG YLP series NEWSON NV Copyright Newson NV, A2G_LLink TM -08_03 page 1

DATA SHEET LLINK TM -08 for IPG YLP series NEWSON NV Copyright Newson NV, A2G_LLink TM -08_03 page 1 DATA SHEET LLINK TM -08 for IPG YLP series NEWSON NV Copyright Newson NV, 2000-2018 A2G_LLink TM -08_03 page 1 Table of Contents 1 CONNECTIONS LLINK TM... 3 1.1 COMPATIBILITY... 3 1.2 DIMENSIONS... 3 1.3

More information

Stay Married with the FIT Technique Go from Pissed off to Peaceful in Three Simple Steps!

Stay Married with the FIT Technique Go from Pissed off to Peaceful in Three Simple Steps! Stay Married with the FIT Technique Go from Pissed off to Peaceful in Three Simple Steps! The FIT Technique Here are the three steps in summary: Step 1 FEEL (F): Identify the feeling beneath Pissed Off

More information

LOSE up to ONE POUND A DAY

LOSE up to ONE POUND A DAY LOSE up to ONE POUND A DAY You, just like a lot of the rest of us, make resolutions to lose weight at the beginning of every New Year. However, a month or so into it people give up. Why does this happen??

More information

Stress is different for everyone While what happens in the brain and the body is the same for all of us, the precipitating factors are very

Stress is different for everyone While what happens in the brain and the body is the same for all of us, the precipitating factors are very 1 Stress is different for everyone While what happens in the brain and the body is the same for all of us, the precipitating factors are very individual. What one person experiences as stressful might

More information

How to Reduce Test Anxiety

How to Reduce Test Anxiety How to Reduce Test Anxiety To reduce math test anxiety, you need to understand both the relaxation response and how negative self-talk undermines your abilities. Relaxation Techniques The relaxation response

More information

I Feel: Stressed Lesson Plan

I Feel: Stressed Lesson Plan I Feel: Stressed Lesson Plan Course Description This course is designed to define stress and identify its causes. It will also discuss ways to reduce stress and suggest who young people can turn to when

More information

A Guide to. Colon Cancer. Screening. Why should I get screened? a not too old adventure. ...because

A Guide to. Colon Cancer. Screening. Why should I get screened? a not too old adventure. ...because A Guide to Colon Cancer Screening Why should I get screened? I have a all depend they lot on of cooking to do. me. I have a girls only my lothave of cooking to do. one mom. I have a practice we lot what

More information

Question: I m worried my child is using illegal drugs, what should I do about it?

Question: I m worried my child is using illegal drugs, what should I do about it? Question: I m worried my child is using illegal drugs, what should I do about it? Answer: Many parents worry about whether their son or daughter is using illegal drugs and what they should do about it.

More information

A guide to conversations with young people about DRUGS & ALCOHOL

A guide to conversations with young people about DRUGS & ALCOHOL A guide to conversations with young people about DRUGS & ALCOHOL DID YOU KNOW ALCOHOL Conversations about drugs & alcohol Key tips for conversations: Eat before you drink Count the standard drinks Avoid

More information

510(k) submissions. Getting US FDA clearance for your device: Improving

510(k) submissions. Getting US FDA clearance for your device: Improving Getting US FDA clearance for your device: Improving 510(k) submissions Audrey Swearingen, RAC Director, Regulatory Affairs Telephone: +1 512.222.0263 Email: aswearingen@emergogroup.com Download this white

More information

Outline. Pipeline, Pipelined datapath Dependences, Hazards. Control Hazards Branch prediction. Structural, Data - Stalling, Forwarding

Outline. Pipeline, Pipelined datapath Dependences, Hazards. Control Hazards Branch prediction. Structural, Data - Stalling, Forwarding Control Hazard Outline Pipeline, Pipelined datapath Dependences, Hazards Structural, Data - Stalling, Forwarding Control Hazards Branch prediction Control Hazard Arise from the pipelining of branches and

More information

9 INSTRUCTOR GUIDELINES

9 INSTRUCTOR GUIDELINES STAGE: Ready to Quit You are a clinician in a family practice group and are seeing 16-yearold Nicole Green, one of your existing patients. She has asthma and has come to the office today for her yearly

More information

Participant Information Sheet

Participant Information Sheet Appendix A Participant Information Sheet for Young People Participant Information Sheet Exploring experiences of disclosure and non-disclosure amongst young adolescents who hear voices Hi. My name is Rachel

More information

Introductory Motor Learning and Development Lab

Introductory Motor Learning and Development Lab Introductory Motor Learning and Development Lab Laboratory Equipment & Test Procedures. Motor learning and control historically has built its discipline through laboratory research. This has led to the

More information

Resource Access Protocols. LS 12, TU Dortmund

Resource Access Protocols. LS 12, TU Dortmund Resource Access Protocols Prof. Dr. Jian-Jia Chen LS 12, TU Dortmund 30, Oct. 2018 Prof. Dr. Jian-Jia Chen (LS 12, TU Dortmund) 1 / 27 Why do We Have to Worry about Resource Sharing? Shared Resources:

More information

Dr. Mia Mulrennan, President, Rave-Worthy LLC The Optimist Gets Results: Faking the Cha-Cha with Two Left Feet

Dr. Mia Mulrennan, President, Rave-Worthy LLC The Optimist Gets Results: Faking the Cha-Cha with Two Left Feet YWCA Women s Leadership Conference 2014 Dr. Mia Mulrennan, President, Rave-Worthy LLC The Optimist Gets Results: Faking the Cha-Cha with Two Left Feet The Optimist Gets Results: Faking the Cha-Cha with

More information

USER GUIDE: NEW CIR APP. Technician User Guide

USER GUIDE: NEW CIR APP. Technician User Guide USER GUIDE: NEW CIR APP. Technician User Guide 0 Table of Contents 1 A New CIR User Interface Why?... 3 2 How to get started?... 3 3 Navigating the new CIR app. user interface... 6 3.1 Introduction...

More information

Lesson 2 Alcohol: What s the Truth?

Lesson 2 Alcohol: What s the Truth? Lesson 2 Alcohol: What s the Truth? Overview This informational lesson helps students see how much they know about alcohol and teaches key facts about this drug. Students complete a True/False quiz about

More information

Kernel Korner. The schedule() Function. Sleeping in the Kernel. Kedar Sovani. Abstract

Kernel Korner. The schedule() Function. Sleeping in the Kernel. Kedar Sovani. Abstract 1 of 7 6/18/2006 8:38 PM Kernel Korner Sleeping in the Kernel Kedar Sovani Abstract The old sleep_on() function won't work reliably in an age of SMP systems and hyperthreaded processors. Here's how to

More information

Working with Difficult Investigators

Working with Difficult Investigators Vol. 8, No. 9, September 2012 Happy Trials to You Working with Difficult Investigators By Rachel Garman and Norman M. Goldfarb Disclaimer: All names have been changed to protect the difficult. Principal

More information

Michigan State University Alumni Communities

Michigan State University Alumni Communities Getting Started Guide Michigan State University Alumni Communities We know you ve got a lot on your plate as you plan your upcoming event, so we made this guide to help you get started using Nvite. You

More information

AUTOMATIONWORX. User Manual. UM EN IBS SRE 1A Order No.: INTERBUS Register Expansion Chip IBS SRE 1A

AUTOMATIONWORX. User Manual. UM EN IBS SRE 1A Order No.: INTERBUS Register Expansion Chip IBS SRE 1A AUTOMATIONWORX User Manual UM EN IBS SRE 1A Order No.: 2888741 INTERBUS Register Expansion Chip IBS SRE 1A AUTOMATIONWORX User Manual INTERBUS Register Expansion Chip IBS SRE 1A 06/2006 Designation: Revision:

More information

To Burn Fat Faster, Try REAL Stair Climbing By Virgil Aponte

To Burn Fat Faster, Try REAL Stair Climbing By Virgil Aponte To Burn Fat Faster, Try REAL Stair Climbing By Virgil Aponte www.ultimatestairexercises.com Have you ever tried using the stairs at work or in your apartment building to work out? If not, then you have

More information

Trio Motion Technology Ltd. Shannon Way, Tewkesbury, Gloucestershire. GL20 8ND United Kingdom Tel: +44 (0) Fax: +44 (0)

Trio Motion Technology Ltd. Shannon Way, Tewkesbury, Gloucestershire. GL20 8ND United Kingdom Tel: +44 (0) Fax: +44 (0) www.triomotion.com Trio Motion Technology Ltd. Shannon Way, Tewkesbury, Gloucestershire. GL20 8ND United Kingdom Tel: +44 (0)1684 292333 Fax: +44 (0)1684 297929 1000 Gamma Drive Suite 206 Pittsburgh, PA

More information

A guide to making a Will and including a gift to Parkinson s UK

A guide to making a Will and including a gift to Parkinson s UK A guide to making a Will and including a gift to Parkinson s UK Thank you Thank you for finding out about including a gift to Parkinson s UK in your Will. Gifts in Wills are hugely important to us as they

More information

Table of Contents FOREWORD THE TOP 7 CAUSES OF RUNNING INJURIES 1) GET IN SHAPE TO RUN... DON T RUN TO GET IN SHAPE.

Table of Contents FOREWORD THE TOP 7 CAUSES OF RUNNING INJURIES 1) GET IN SHAPE TO RUN... DON T RUN TO GET IN SHAPE. Table of Contents FOREWORD THE TOP 7 CAUSES OF RUNNING INJURIES 1) GET IN SHAPE TO RUN... DON T RUN TO GET IN SHAPE. 2) A PROPER WARMUP IS WORTH YOUR TIME. NO RUN IS WORTH AN INJURY. ) THE ARCH WAS NOT

More information

Options in HIV Prevention A Participant-Centered Counseling Approach

Options in HIV Prevention A Participant-Centered Counseling Approach Options in HIV Prevention A Participant-Centered Counseling Approach Options Counseling Flipchart, Version 3.0, 10 Oct 2017 Enrollment Visit Welcome and thank you! 3 HOPE Adherence Counseling CHOICE: Helping

More information

CHILDREN S HEALTH SURVEY

CHILDREN S HEALTH SURVEY CHILDREN S HEALTH SURVEY FOR ASTHMA CHILD VERSION The purpose of this survey is to find out how much asthma affects the everyday life of both you and your family. THERE ARE NO RIGHT OR WRONG ANSWERS!!

More information

OUTLINE OF PRESENTATION

OUTLINE OF PRESENTATION Swimming Race Day Execution Sean McCann Ph.D. USOC Senior Sport Psychologist Sean McCann Ph.D., USOC sean.mccann@usoc.org OUTLINE OF PRESENTATION 2 Introductions Three Skill Sets for performing under pressure

More information

Grade 2: Exercise Lesson 4: Start Now, Stay Fit

Grade 2: Exercise Lesson 4: Start Now, Stay Fit Grade 2: Exercise Lesson 4: Start Now, Stay Fit Objectives: Students will identify the important contributing factors to physical fitness in health. Students will develop a personal fitness plan. Students

More information

Information about. Cervical screening. (smear test) jostrust.org.uk

Information about. Cervical screening. (smear test) jostrust.org.uk Information about Cervical screening Cervical screening (smear test) jostrust.org.uk About this booklet This booklet is for anyone who has been invited for cervical screening (a smear test) or is interested

More information

ESTROGEN DETECTION AND DEGRADATION Envisioning a cell which can detect and degrade harmful environmental estrogens

ESTROGEN DETECTION AND DEGRADATION Envisioning a cell which can detect and degrade harmful environmental estrogens ESTROGEN DETECTION AND DEGRADATION Envisioning a cell which can detect and degrade harmful environmental estrogens so for the first part of the three part series, build new e. coli; save the world, we

More information

Vulnerable Adults Housing & Well-Being Support. Easy Read Version Consultation Questionnaire

Vulnerable Adults Housing & Well-Being Support. Easy Read Version Consultation Questionnaire Vulnerable Adults Housing & Well-Being Support Easy Read Version Consultation Questionnaire We want to know what is really important to Vulnerable Adults. We want to know what support is needed to make

More information

SOKOL USA FITNESS CHALLENGE

SOKOL USA FITNESS CHALLENGE 2018-2019 SOKOL USA FITNESS CHALLENGE The 2018-2019 Fitness Challenge includes 4 elements testing performance in muscular strength, muscular endurance, speed, and agility. Participation is open to all

More information

Power Management Implementation

Power Management Implementation 1 Background Power Management Implementation -Santosh Kumar, Anish Arora, OSU, and Young-ri Choi, Mohamed Gouda, University of Texas at Austin 1.1 Sleep Modes There are six power level states in the MCU.

More information

To learn more, visit the website and see the Find Out More section at the end of this booklet.

To learn more, visit the website  and see the Find Out More section at the end of this booklet. Loving Your Child, Learning How to Help Congratulations! As a parent of a precious baby or young child, you have a wonderful journey ahead. The fact that your child has a hearing loss is only one part

More information

Essential Questions? What does CPR stand for? What is cardiac arrest? What is an AED? What are the steps to hands only Cardiopulmonary Resuscitation?

Essential Questions? What does CPR stand for? What is cardiac arrest? What is an AED? What are the steps to hands only Cardiopulmonary Resuscitation? Essential Questions? What does CPR stand for? What is cardiac arrest? What is an AED? What are the steps to hands only Cardiopulmonary Resuscitation? 8.PCH.4 Analyze necessary steps to prevent and respond

More information

Section 4 - Dealing with Anxious Thinking

Section 4 - Dealing with Anxious Thinking Section 4 - Dealing with Anxious Thinking How do we challenge our unhelpful thoughts? Anxiety may decrease if we closely examine how realistic and true our unhelpful/negative thoughts are. We may find

More information

How to Get a Customized Wheelchair through Florida Medicaid. Created by the Florida Developmental Disabilities Council, Inc.

How to Get a Customized Wheelchair through Florida Medicaid. Created by the Florida Developmental Disabilities Council, Inc. How to Get a Customized Wheelchair through Florida Medicaid Created by the Florida Developmental Disabilities Council, Inc. How to Get a Customized Wheelchair through Florida Medicaid What is a customized

More information

Data that can be classified as belonging to a distinct number of categories >>result in categorical responses. And this includes:

Data that can be classified as belonging to a distinct number of categories >>result in categorical responses. And this includes: This sheets starts from slide #83 to the end ofslide #4. If u read this sheet you don`t have to return back to the slides at all, they are included here. Categorical Data (Qualitative data): Data that

More information

Depression: How To Overcome Depression And Feel Happy Forever!: Depression Symptoms, Causes And Treatment Methods. (Depression Cure - Depression, OCD

Depression: How To Overcome Depression And Feel Happy Forever!: Depression Symptoms, Causes And Treatment Methods. (Depression Cure - Depression, OCD Depression: How To Overcome Depression And Feel Happy Forever!: Depression Symptoms, Causes And Treatment Methods. (Depression Cure - Depression, OCD And Bipolar Disorder Guide) By Jonathan Brown Noté

More information

Cellular Respiration

Cellular Respiration Cellular Respiration How do living things use chemical reactions to get energy from food? Version November 2017 1 How do we get our energy from food? 1 The connection between food and energy We ve figured

More information

Having Sex. Some people are heterosexual. Fact Sheet

Having Sex. Some people are heterosexual. Fact Sheet Fact Sheet Having Sex Sometimes people who are in a close relationship and like each other a lot, or love each other, like to kiss and cuddle. Sometimes they show how much they like or love each other

More information

Program instructions

Program instructions Program instructions Joe Marksteiner has written a truly remarkable program for use at Powerlifting events. Automatic sorting, weight class look-ups, Wilks formula calculations, results printing, a displayed

More information

EXPERIMENTAL METHODS 1/15/18. Experimental Designs. Experiments Uncover Causation. Experiments examining behavior in a lab setting

EXPERIMENTAL METHODS 1/15/18. Experimental Designs. Experiments Uncover Causation. Experiments examining behavior in a lab setting EXPERIMENTAL METHODS Experimental Designs Experiments examining behavior in a lab setting Controlled lab setting separates experiments from non-experiments Allows experimenter to know exactly what s causing

More information

HOW TO CONTROL YOUR THOUGHTS: MIND CONTROL TECHNIQUES TO CHANGE THE WAY YOU THINK AND ATTRACT SUCCESS & HAPPINESS BY MAULIN HENDRIKS

HOW TO CONTROL YOUR THOUGHTS: MIND CONTROL TECHNIQUES TO CHANGE THE WAY YOU THINK AND ATTRACT SUCCESS & HAPPINESS BY MAULIN HENDRIKS HOW TO CONTROL YOUR THOUGHTS: MIND CONTROL TECHNIQUES TO CHANGE THE WAY YOU THINK AND ATTRACT SUCCESS & HAPPINESS BY MAULIN HENDRIKS DOWNLOAD EBOOK : HOW TO CONTROL YOUR THOUGHTS: MIND CONTROL ATTRACT

More information

[(EMBEDDED SYSTEMS DESIGN )] [AUTHOR: STEVE HEATH] [DEC-2002] BY STEVE HEATH

[(EMBEDDED SYSTEMS DESIGN )] [AUTHOR: STEVE HEATH] [DEC-2002] BY STEVE HEATH [(EMBEDDED SYSTEMS DESIGN )] [AUTHOR: STEVE HEATH] [DEC-2002] BY STEVE HEATH DOWNLOAD EBOOK : [(EMBEDDED SYSTEMS DESIGN )] [AUTHOR: STEVE Click link bellow and free register to download ebook: [(EMBEDDED

More information

Anxiety and Worries. How common is it?

Anxiety and Worries. How common is it? Anxiety and Worries We all get frightened or worried from time to time. Fear can be a good thing as it keeps us from getting too close to danger. Sometimes, we can feel frightened or worry about things

More information

MALE LIBIDO- EBOOKLET

MALE LIBIDO- EBOOKLET MALE LIBIDO- EBOOKLET Hi there, Thank you for ordering this Native Remedies ebooklet! ebooklets are modified from consultations with real people and cover some of the most frequently dealt with problems

More information

Regulation of Human Heart Rate

Regulation of Human Heart Rate Name: Date: Period: Regulation of Human Heart Rate Pre-Lab 1. List some activities or stimuli that you think may increase a person s heart rate. An activity is something a person does, and a stimulus is

More information

Speak up. What Healthwatch England did in

Speak up. What Healthwatch England did in Speak up What Healthwatch England did in 2016-2017 EasyRead version of: Speak up. Healthwatch Annual report 2016 2017 What is in this report About us 1 Our principles 3 What we do 5 What people think about

More information

The Top 10 Things. Orthodontist SPECIAL REPORT. by Dr. Peter Kimball. To Know When Choosing An. Top 10 Things To Know Before Choosing An Orthodontist

The Top 10 Things. Orthodontist SPECIAL REPORT. by Dr. Peter Kimball. To Know When Choosing An. Top 10 Things To Know Before Choosing An Orthodontist SPECIAL REPORT The Top 10 Things To Know When Choosing An Orthodontist by Dr. Peter Kimball 949.363.3350 www.kimballortho.com 949.363.3350 www.kimballortho.com 1 Introductory Letter from Dr. Kimball Dear

More information

Genetic Counselor: Hi Lisa. Hi Steve. Thanks for coming in today. The BART results came back and they are positive.

Genetic Counselor: Hi Lisa. Hi Steve. Thanks for coming in today. The BART results came back and they are positive. Hi, I m Kaylene Ready, a genetic counselor who specializes in the education and counseling of individuals at high-risk for hereditary breast and ovarian cancer syndrome. Women with an inherited BRCA 1

More information

Computer Science 101 Project 2: Predator Prey Model

Computer Science 101 Project 2: Predator Prey Model Computer Science 101 Project 2: Predator Prey Model Real-life situations usually are complicated and difficult to model exactly because of the large number of variables present in real systems. Computer

More information

Illogical Inductive Conversions

Illogical Inductive Conversions Chapter 11, Part 7 Illogical Inductive Conversions One more caution regarding inductive reasoning: Stats show that of drivers involved in fatal crashes, 40% are under 26 years old. Therefore, if you re

More information

Interviewer: Tell us about the workshops you taught on Self-Determination.

Interviewer: Tell us about the workshops you taught on Self-Determination. INTERVIEW WITH JAMIE POPE This is an edited translation of an interview by Jelica Nuccio on August 26, 2011. Jelica began by explaining the project (a curriculum for SSPs, and for Deaf-Blind people regarding

More information

Wellness Champion Conference Call. April 2018

Wellness Champion Conference Call. April 2018 Wellness Champion Conference Call April 2018 Announcements 2 Save the Date! One Faith, Wellness Champion 101 Tuesday, April 24 th, 2018 What we re covering: 1. Wellness Champ tools & resources 2. Updates

More information

Davy the Detective. Finding out about anaesthetics

Davy the Detective. Finding out about anaesthetics Davy the Detective Finding out about anaesthetics When Davy wants to know about something, he becomes a detective (with a little help from his friends). Information about anaesthesia for young people This

More information

QUESTIONS AND ANSWERS

QUESTIONS AND ANSWERS QUESTIONS AND ANSWERS Common questions about treating diarrhoea with zinc and oral rehydration salts (ORS) SPACE FOR LOGO INTRODUCTION To treat childhood diarrhoea, the World Health Organization recommends

More information

THE HEART. Teacher Pages. Grade Level 3-5

THE HEART. Teacher Pages. Grade Level 3-5 Grade Level 3-5 Summary Students will explore the causes and effects of heart attacks, and how regenerative medicine can help the heart. Students will research regenerative medicine using the Internet

More information

The Next 32 Days. By James FitzGerald

The Next 32 Days. By James FitzGerald The Next 32 Days By James FitzGerald The CrossFit OPENS are here again. It seems like a few months ago we were all making the statements - THIS will be the year of training Only to see those months FLY

More information

Controlling Worries and Habits

Controlling Worries and Habits THINK GOOD FEEL GOOD Controlling Worries and Habits We often have obsessional thoughts that go round and round in our heads. Sometimes these thoughts keep happening and are about worrying things like germs,

More information

NE LESSON GD Fit Families: Effortless Exercise

NE LESSON GD Fit Families: Effortless Exercise NE LESSON GD-000-06 Fit Families: Effortless Exercise LESSON DESCRIPTION In this video and activity lesson, class participants will learn strategies for incorporating physical activity into their daily

More information

Presentation Preparation

Presentation Preparation November 2015 TABLE OF CONTENTS page 1 CHIROPRACTORS PRESENTING CHIROPRACTIC TO OTHER HEALTH PRACTITIONERS Presentation Tips Getting Ready Presentation Day Following Up page 3 COMMON QUESTIONS AND HOW

More information

THE BICEPS BIBLE THEIR BICEPS!!! Jay Piggin

THE BICEPS BIBLE THEIR BICEPS!!! Jay Piggin Let s face it, when it comes to building one s body, the biceps are the rst muscle group we all focus on. Find that hard to agree with? I interviewed over 100 different men and 85% of them said if they

More information

Fitness101 Intermediate to Advanced Plan.

Fitness101 Intermediate to Advanced Plan. Fitness101 Intermediate to Advanced Plan www.sleekgeek.co.za THE FITNESS 101 SLEEKGEEK 8-WEEK TRANSFORMATION PLAN LEVEL: INTERMEDIATE TO ADVANCED INTRODUCTION Welcome to our Fitness 101 8-Week Transformation

More information

Disclaimer!! Bikini Belly Super Sculpt

Disclaimer!! Bikini Belly Super Sculpt Super Sculpt Series Disclaimer See your physician before starting any exercise or nutrition program. Prior to starting, you should discuss all nutritional changes with your physician or a registered dietician.

More information

The Recovery Journey after a PICU admission

The Recovery Journey after a PICU admission The Recovery Journey after a PICU admission A guide for families Introduction This booklet has been written for parents and young people who have experienced a Paediatric Intensive Care Unit (PICU) admission.

More information

107 If I have the proofs DTA wanted, should I still ask for a hearing?

107 If I have the proofs DTA wanted, should I still ask for a hearing? Part 6 Appeal Rights 106 What are my rights if DTA denies, cuts or stops my SNAP? If DTA denies your SNAP benefits or stops or lowers your benefits, you can ask for a fair hearing. A fair hearing, or an

More information

Instructions continue on the next page, please turn over.

Instructions continue on the next page, please turn over. External Assessment NCFE Level 2 Certificate in Health and Fitness (601/4534/1) Unit 03 Preparing and planning for health and fitness (K/506/5251) Paper number: P000379 Assessment Date: 27 March 2017 Assessment

More information

Healing Trauma Evaluation Year 1 Findings

Healing Trauma Evaluation Year 1 Findings 2551 Galena Avenue #1774 Simi Valley, CA 93065 310-801-8996 Envisioning Justice Solutions, Inc. Determining the Programs, Policies, and Services Needed to Rebuild the Lives of Criminal Justice Involved

More information

How To Win Your War Against Snoring And Sleep Apnea

How To Win Your War Against Snoring And Sleep Apnea Page 1 of 1 Contents What Is Sleep Apnea?... 9 Treatments For Central Sleep Apnea... 10 Learning About Sleep Apnea... 11 What Are The Symptoms Of Sleep Apnea?... 12 What Is Causing My Obstructive Sleep

More information

Objectives. Quantifying the quality of hypothesis tests. Type I and II errors. Power of a test. Cautions about significance tests

Objectives. Quantifying the quality of hypothesis tests. Type I and II errors. Power of a test. Cautions about significance tests Objectives Quantifying the quality of hypothesis tests Type I and II errors Power of a test Cautions about significance tests Designing Experiments based on power Evaluating a testing procedure The testing

More information

LESSON RESOURCES - PRINTABLES - EXTENSION ACTIVITIES AT HOME LEARNING TASKS

LESSON RESOURCES - PRINTABLES - EXTENSION ACTIVITIES AT HOME LEARNING TASKS TEACHER'S LEARNING CANVAS LESSON RESOURCES - PRINTABLES - EXTENSION ACTIVITIES AT HOME LEARNING TASKS Contentso N O W HisI awarded R I N G to Lesson Plans and Ideas... 2 Extension Activities... 7 At Home

More information

Biology Change Pressure Identity and Self-Image

Biology Change Pressure Identity and Self-Image Victoria L Foster Biology Change Pressure Identity and Self-Image Sadness Sadness is something we all experience. Sadness is usually tied to one event or reason. Sadness is what happens when normal

More information

F²MC-8FX FAMILY MB95200H/210H SERIES HOW TO DO CR TRIMMING 8-BIT MICROCONTROLLER APPLICATION NOTE

F²MC-8FX FAMILY MB95200H/210H SERIES HOW TO DO CR TRIMMING 8-BIT MICROCONTROLLER APPLICATION NOTE Fujitsu Microelectronics (Shanghai) Co., Ltd Application Note MCU-AN-500014-E-10 F²MC-8FX FAMILY 8-BIT MICROCONTROLLER MB95200H/210H SERIES HOW TO DO CR TRIMMING APPLICATION NOTE CR trimming Operation

More information

Improving Your Sleep Course. Session 4 Dealing With a Racing Mind

Improving Your Sleep Course. Session 4 Dealing With a Racing Mind Improving Your Sleep Course Session 4 Dealing With a Racing Mind Session 4 Dealing With a Racing Mind This session will: Help you to learn ways of overcoming the mental alertness, repetitive thoughts and

More information

Autism, my sibling, and me

Autism, my sibling, and me ORGANIZATION FOR AUTISM RESEARCH Autism, my sibling, and me Brothers and sisters come in all shapes and sizes. They have a lot in common, and they can be really different from each other. Some kids even

More information

The success of blinding in surgical ti trials

The success of blinding in surgical ti trials The success of blinding in surgical ti trials Dr Caroline Boulind An NIHR Research for Patient Benefit funded Programme Avery K; Savovic J; Metcalfe C; Francis NK; Blazeby JM Blinding Aim To explore a

More information

Online courses for anxiety and depression PATIENT USER GUIDE. Frequently Asked Questions v2.0

Online courses for anxiety and depression PATIENT USER GUIDE. Frequently Asked Questions v2.0 Online courses for anxiety and depression PATIENT USER GUIDE Frequently Asked Questions v2.0 1 Contents What are This Way Up courses?... 3 What is CBT?... 3 What is icbt?... 4 Why use THIS WAY UP?... 4

More information

Explaining the Rationale for Trauma-Focused Work: Why it s Good to Talk

Explaining the Rationale for Trauma-Focused Work: Why it s Good to Talk Explaining the Rationale for Trauma-Focused Work: Why it s Good to Talk David Trickey Consultant Clinical Psychologist Anna Freud National Centre for Children and Families Memories of traumatic events

More information