px4-firmware/apps/examples/pashello
patacongo 211fe84e0b update Kconfig files
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4598 7fd9a85b-ad96-42d3-883c-3090e2eb8679
2012-04-13 02:14:09 +00:00
..
Kconfig update Kconfig files 2012-04-13 02:14:09 +00:00
Makefile Completes coding of the PWM module 2011-12-19 19:24:09 +00:00
README.txt Completes coding of the PWM module 2011-12-19 19:24:09 +00:00
device.c Move file-system header files to include/nuttx/fs 2012-03-21 18:01:07 +00:00
hello.h Completes coding of the PWM module 2011-12-19 19:24:09 +00:00
hello.pas Completes coding of the PWM module 2011-12-19 19:24:09 +00:00
hello.pex Completes coding of the PWM module 2011-12-19 19:24:09 +00:00
mkhello.sh Completes coding of the PWM module 2011-12-19 19:24:09 +00:00
pashello.c Completes coding of the PWM module 2011-12-19 19:24:09 +00:00
pashello.h Completes coding of the PWM module 2011-12-19 19:24:09 +00:00

README.txt

README
^^^^^^

hello.pas

  This is a sample "Hello, World!" Pascal Program

hello.pex

  This is the compiled, linked P-Code executable that results
  when hello.pas is compiled.

hello.h

  This file defines an initialized C array holds a copy of
  hello.pex.  This file as created by:

    xxd -i hello.pex >hello.h

mkhello.sh

  This is a scripts that can be used to rebuild both hello.pex
  and hello.h.

device.c

  The hello.pex file must be provided to the interpreter as a file
  in the file system.  Normally this would be done using real storage
  medium.  In this example, we will use device.c:

  device.c implements a simple device driver.  Reads from this device
  will access the in-memory copy of hello.pex  This device driver is
  registered as /dev/pashello in the psuedo filesystem.