Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
/* * "Hello World" example. * * This example prints 'Hello from Nios II' to the STDOUT stream. It runs on * the Nios II 'standard', 'full_featured', 'fast', and 'low_cost' example * designs. It runs with or without the MicroC/OS-II RTOS and requires a STDOUT * device in your system's hardware. * The memory footprint of this hosted application is ~69 kbytes by default * using the standard reference design. * * For a reduced footprint version of this template, and an explanation of how * to reduce the memory footprint for a given application, see the * "small_hello_world" template. * */ #include <stdio.h> #include <io.h> #include <system.h> //#include "alt_types.h" #include "sys/alt_irq.h" #include <unistd.h> #include "sys/alt_alarm.h" ; /* Przełączniki */ #define SW0 0x00000001 #define SW1 0x00000002 #define SW2 0x00000004 #define SW3 0x00000008 #define SW4 0x00000010 #define SW5 0x00000020 #define SW6 0x00000040 #define SW7 0x00000080 #define SW8 0x00000100 #define SW9 0x00000200 #define SW10 0x00000400 #define SW11 0x00000800 #define SW12 0x00001000 #define SW13 0x00002000 #define SW14 0x00004000 #define SW15 0x00008000 #define SW16 0x00010000 #define SW17 0x00020000 /* PushButtony */ #define KEY1 0x00000002 #define KEY2 0x00000004 #define KEY3 0x00000008 /* Ledy */ #define LED0 0x00000001 #define LED1 0x00000002 #define LED2 0x00000004 #define LED3 0x00000008 #define LED4 0x00000010 #define LED5 0x00000020 #define LED6 0x00000040 #define LED7 0x00000080 #define LED8 0x00000100 #define LED9 0x00000200 #define LED10 0x00000400 #define LED11 0x00000800 #define LED12 0x00001000 #define LED13 0x00002000 #define LED14 0x00004000 #define LED15 0x00008000 #define LED16 0x00010000 #define LED17 0x00020000 /* Segmenty HEX */ #define SEGA 1 #define SEGB 2 #define SEGC 4 #define SEGD 8 #define SEGE 16 #define SEGF 32 #define SEGG 64 /* Litery i cyfry z hex 7 segmentowych */ #define HEX0 (SEGA|SEGB|SEGC|SEGD|SEGE|SEGF) #define HEX1 (SEGB|SEGC) #define HEX2 (SEGA|SEGB|SEGG|SEGE|SEGD) #define HEX3 (SEGA|SEGB|SEGC|SEGD|SEGG) #define HEX4 (SEGF|SEGG|SEGB|SEGC) #define HEX5 (SEGA|SEGF|SEGG|SEGC|SEGD) #define HEX6 (SEGA|SEGF|SEGG|SEGC|SEGD|SEGE) #define HEX7 (SEGA|SEGB|SEGC) #define HEX8 (SEGA|SEGB|SEGC|SEGD|SEGE|SEGF|SEGG) #define HEX9 (SEGA|SEGB|SEGC|SEGD|SEGF|SEGG) #define HEXE (SEGA|SEGF|SEGG|SEGE|SEGD) #define HEXr (SEGE|SEGG) #define HEXA (SEGA|SEGB|SEGC|SEGE|SEGF|SEGG) #define HEXF (SEGA|SEGE|SEGF|SEGG) #define HEXC (SEGA|SEGE|SEGF|SEGD) #define HEXD (SEGB|SEGC|SEGD|SEGE|SEGG) static alt_alarm alarmLED; static alt_alarm alarmHEX; static alt_alarm alarmERR; int error = 0; alt_u32 writeERR(void* context) { if (*(int*) context == 0) { IOWR(LEDS_RED_BASE, 0, LED17); *(int*) context = 1; } else if (*(int*) context == 1) { IOWR(HEX_3_BASE, 0, ((HEXE<<16) | (HEXr<<8) | HEXr)); *(int*) context = 2; } if (!error) { alt_alarm_stop(&alarmERR); error = 1; } return alt_ticks_per_second(); //alt_alarm_stop (&alarmERR); } alt_u32 writeLEDs(void* context) { int switches = IORD(SW_SLIDERS_BASE, 0); int state = switches & (SW0 | SW1 | SW2 | SW3 | SW4 | SW5 | SW6); switch (state) { case 0: IOWR(LEDS_RED_BASE, 0, 0); break; case 1: IOWR(LEDS_RED_BASE, 0, LED0); if ((switches & SW7) && (switches & SW8)) { IOWR(LEDS_RED_BASE, 0, LED17); } else if (switches & SW7) { IOWR(LEDS_RED_BASE, 0, LED7); } else if (switches & SW8) { IOWR(LEDS_RED_BASE, 0, LED8); } break; case 2: IOWR(LEDS_RED_BASE, 0, LED1); break; case 4: IOWR(LEDS_RED_BASE, 0, LED2); break; case 8: IOWR(LEDS_RED_BASE, 0, LED3); break; case 16: IOWR(LEDS_RED_BASE, 0, LED4); break; case 32: IOWR(LEDS_RED_BASE, 0, LED5); break; case 64: IOWR(LEDS_RED_BASE, 0, LED6); break; } alt_alarm_stop(&alarmLED); return 0; } alt_u32 writeHEXes(void* context) { int switches = IORD(SW_SLIDERS_BASE, 0); int state = switches & (SW0 | SW1 | SW2 | SW3 | SW4 | SW5 | SW6); switch (state) { case 0: IOWR(HEX_3_BASE, 0, 0); break; case 1: IOWR(HEX_3_BASE, 0, HEX1); if ((switches & SW7) && (switches & SW8)) { IOWR(HEX_3_BASE, 0, ((HEXE<<24) | (HEXr<<16) | (HEXr<<8))); } else if (switches & SW7) { IOWR(HEX_3_BASE, 0, (HEXA<<8)); } else if (switches & SW8) { IOWR(HEX_3_BASE, 0, (HEXF<<8)); } break; case 2: IOWR(HEX_3_BASE, 0, HEX2); break; case 4: IOWR(HEX_3_BASE, 0, HEX3); break; case 8: IOWR(HEX_3_BASE, 0, HEX4); break; case 16: IOWR(HEX_3_BASE, 0, HEX5); break; case 32: IOWR(HEX_3_BASE, 0, HEX6); break; case 64: IOWR(HEX_3_BASE, 0, HEX7); break; } alt_alarm_stop(&alarmHEX); return 0; } int main() { printf("Hello from Nios II!\n"); int state = 0; int lastState = 0; int timeToEventLeds = 1; int timeToEventHex = 0; int which = 0; do { int switches = IORD(SW_SLIDERS_BASE, 0); state = switches & (SW0 | SW1 | SW2 | SW3 | SW4 | SW5); if (lastState != state) { switch (state) { case 0: if (error) { timeToEventLeds = 3; timeToEventHex = 0; } else { timeToEventLeds = 2; timeToEventHex = 0; } error = 0; break; case 1: if (error) { timeToEventLeds = 3; timeToEventHex = 0; } else { timeToEventLeds = 1; timeToEventHex = 0; } error = 0; break; case 2: if (error) { timeToEventLeds = 3; timeToEventHex = 0; } else { timeToEventLeds = 1; timeToEventHex = 0; } error = 0; break; case 4: if (error) { timeToEventLeds = 3; timeToEventHex = 0; } else { timeToEventLeds = 1; timeToEventHex = 0; } error = 0; break; case 8: if (error) { timeToEventLeds = 3; timeToEventHex = 0; } else { timeToEventLeds = 1; timeToEventHex = 0; } error = 0; break; case 16: if (error) { timeToEventLeds = 3; timeToEventHex = 0; } else { timeToEventLeds = 1; timeToEventHex = 0; } error = 0; break; case 32: if (error) { timeToEventLeds = 3; timeToEventHex = 0; } else { timeToEventLeds = 1; timeToEventHex = 0; } error = 0; break; case 64: if (error) { timeToEventLeds = 3; timeToEventHex = 0; } else { timeToEventLeds = 1; timeToEventHex = 0; } error = 0; break; default: timeToEventLeds = 1; timeToEventHex = 0; error = 1; break; } if (error == 1) { //alt_alarm_start(&alarmERR,timeToEventHex * alt_ticks_per_second(), writeERR, NULL);//(void*)&which) ; printf("Hello from Nios II!\n"); alt_alarm_start(&alarmERR, timeToEventLeds * alt_ticks_per_second(), writeERR, &which); if (which == 2) { alt_alarm_stop(&alarmERR); which = 0; } //which = 1; //alt_alarm_start(&alarmERR,(timeToEventHex-timeToEventLeds) * alt_ticks_per_second(), writeERR, &which) ; } else { alt_alarm_start(&alarmLED, timeToEventLeds * alt_ticks_per_second(), writeLEDs, NULL); alt_alarm_start(&alarmHEX, timeToEventHex * alt_ticks_per_second(), writeHEXes, NULL); } } lastState = state; } while (1); return 0; }
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Let The Money Flow
CSS | 1 hour ago | 0.37 KB
Untitled
CSS | 1 hour ago | 0.34 KB
MAGA250
10 hours ago | 1.48 KB
Nightlight - Imprisoning Pitch
19 hours ago | 0.54 KB
Ombric - Astral Projection
19 hours ago | 0.77 KB
Katherine/Nightlight - Reindeer
19 hours ago | 1.03 KB
Djinni - Swords
19 hours ago | 0.44 KB
Djinni - Limits
19 hours ago | 0.62 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!