From b92665845992ebac34a10ab65e0e60dea94c1d55 Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Fri, 8 Apr 2022 20:29:17 +0800 Subject: [PATCH] reorder things a bit Signed-off-by: Sean Cross --- dist/theme/fossasia2022.css | 2 +- index.html | 156 +++++++++++----------------------- media/antmicro-logo-white.svg | 54 ++++++++++++ media/renode-ci-test.png | Bin 0 -> 69912 bytes 4 files changed, 103 insertions(+), 109 deletions(-) create mode 100644 media/antmicro-logo-white.svg create mode 100644 media/renode-ci-test.png diff --git a/dist/theme/fossasia2022.css b/dist/theme/fossasia2022.css index a6565c6..c9fc80f 100644 --- a/dist/theme/fossasia2022.css +++ b/dist/theme/fossasia2022.css @@ -79,7 +79,7 @@ section.has-light-background h6 { padding-bottom: 1em; padding-right: 1em; text-align: right; - font-size: 0.5em; + font-size: 1.0em; width: 100%; height: 68px; background-color: rgb(78, 78, 78); diff --git a/index.html b/index.html index c3ecda4..72c2283 100644 --- a/index.html +++ b/index.html @@ -86,12 +86,22 @@
-

Renode: Easy CI for your Weird Hardware

+

Renode: Easy Emulation for your Weird Hardware

Sean Cross

+

Follow along at https://p.xobs.io/fa22

Renode

-

I find it a useful tool. Maybe you will, too! +

I find it a useful tool. Maybe you will, too!

+ +
+
+

About Me: I Do Weird Hardware

+
    +
  • Betrusted/Precursor: FPGA Secure Communications
  • +
  • Fomu: World's Smallest FPGA Dev Board
  • +
  • Orchard: Lights, Sounds, Captouch
  • +

What is "Weird Hardware"?

@@ -101,15 +111,6 @@
  • Hardware that uses ARM, i386, PowerPC, Risc-V, Sparc, or Xtensa
  • -
    -

    About Me: I Do Weird Hardware

    -
      -
    • Betrusted/Precursor: FPGA Secure Communications
    • -
    • Fomu: World's Smallest FPGA Dev Board
    • -
    • Novena: Open Source Laptop
    • -
    • Senoko: Open Source Power Board for Novena
    • -
    -

    Hardware with Embedded Software

      @@ -121,22 +122,13 @@

      About Renode

        -
      • Whole-System Emulator
      • -
      • Supports concurrent emulation
      • +
      • Multi-Node Emulator
      • Extensible with C# and Python
      • Windows, Mac, Linux
      • MIT Licensed
      -

      Who Might Find This Talk Interesting?

      • Creators
      • @@ -171,7 +163,7 @@
      • What is it doing and how does it get there?
      -
      +
    -->
    @@ -199,14 +191,14 @@ -->
    -
    +

    What is an Emulator?

    @@ -278,20 +270,20 @@

    Defining a Computer in Renode

    -
    
    +                    
    
                             flash: Memory.MappedMemory @ sysbus 0x00000000
                                 size: 0x00008000
     
                             sram: Memory.MappedMemory @ sysbus 0x20000000
                                 size: 0x00001000
    -    
    -                        nvic: IRQControllers.NVIC @ sysbus 0xE000E000
    -                            IRQ -> cpu@0
    -
    +                            
                             cpu: CPU.CortexM @ sysbus
                                 cpuType: "cortex-m0+"
                                 PerformanceInMips: 24
                                 nvic: nvic
    +    
    +                        nvic: IRQControllers.NVIC @ sysbus 0xE000E000
    +                            IRQ -> cpu@0
                         
    bluenrg-1.repl
    @@ -432,7 +424,7 @@ Blocks are frequently reused across designs, and can save you from having to reimplement everything from scratch!
    -
    +

    Peripheral Rapid Development

    @@ -605,74 +597,6 @@

    Emulation brings more eyes to the project

    -

    Robot Framework: Running Tests in CI

    @@ -689,11 +613,11 @@ ${URI} @https://dl.antmicro.com/projects/renode ${LIS2DS12}= SEPARATOR= - ... """ ${\n} - ... using "platforms/cpus/nrf52840.repl" ${\n} - ... ${\n} - ... lis2ds12: Sensors.LIS2DS12 @ twi1 0x1c ${\n} - ... ${SPACE*4}IRQ -> gpio0@28 ${\n} + ... """ ${\n} + ... using "platforms/cpus/nrf52840.repl" ${\n} + ... ${\n} + ... lis2ds12: Sensors.LIS2DS12 @ twi1 0x1c ${\n} + ... ${SPACE*4}IRQ -> gpio0@28 ${\n} ... """ *** Keywords *** @@ -702,7 +626,7 @@ Execute Command machine ... LoadPlatformDescriptionFromString ${LIS2DS12} Execute Command sysbus LoadELF - ... ${URI}/nrf52840--zephyr_lis2dh.elf-s_747800-163b7e7cc986d4b1115f06b5f3df44ed0defc1fa + ... ${URI}/nrf52840--zephyr_lis2dh.elf *** Test Cases *** Should Read Acceleration @@ -720,6 +644,10 @@

    LIS2DS12.robot

    +
    +

    Github Actions

    + +
    @@ -727,7 +655,7 @@

    SVD: Standard Chip Documentation

    -