Week1-Introduction Keil Studio
Week1-Introduction Keil Studio
MOD007361
• Toulson, R, Wilmhurst, T
(2012), Fast and
Effective Embedded
Systems Design:
Applying the ARM Mbed.
Newnes Elsevier.
Assessment
data and
address
Data
Central Memory
The
data and
address Processing
Input/ Unit (CPU)
Outside
Output
World data and
address
Program
ALU
Memory
Control
Microprocessor
Essentials of a computer
The microcontroller
Sign up
Complete signup
procedure
Keil Studio mbedLPC1768
int main()
{
// Initialise the digital pin LED1 as an output
DigitalOut led(LED1);
while (true) { led = !led;
ThisThread::sleep_for(BLINKING_RATE);
}
}