Giter Site home page Giter Site logo

brickbot / nqc Goto Github PK

View Code? Open in Web Editor NEW
15.0 6.0 5.0 1.88 MB

NQC (Not Quite C) is a programming language for several Lego MindStorms products, including the RCX, CyberMaster, and Scout. This BrickBot/nqc repo captures updates to the code since NQC 3.1 r6 and is believed to be the most progressed nqc repo. This version includes patches posted to https://sourceforge.net/p/bricxcc/patches/.

Home Page: http://bricxcc.sourceforge.net/nqc/

License: Other

Makefile 0.67% C++ 70.08% Batchfile 0.01% Lex 0.81% Yacc 1.16% C 19.52% TeX 6.09% Rebol 0.03% Roff 0.81% Rich Text Format 0.82%
rcx lego-mindstorms nqc

nqc's Introduction

NQC NQC CI

Not Quite C is a simple language with a C-like syntax that can be used to program Lego's RCX programmable brick (from the MindStorms set). If you are just getting started with programming, then graphical environments such as the MindStorms RIS software or Robolab are probably better choices. If, however, you're a C programmer and prefer typing a few lines to drag and drop icon programming, then NQC might be perfect for you.

This BrickBot/nqc repo captures changes to the 3.1r6 code as found on BricxCC, including the following patches that were posted by Matthew Sheets to the original SourceForge project site following the release of nqc 3.1r6 but never incorporated:

  1. Added TCP support, facilitating use of NQC with programs such as BrickEmu (an RCX emulator)
  2. Added additional capabilities for specifying the default USB port, including at both compile time using a Make variable and via enhanced command-line argument support
  3. Support Makefile variables DESTDIR and TOOLPREFIX
  4. Enable specifying the default IR tower name in a configuration file
  5. Support using a Make variable to specify the default compile-time port name, instead of having to modify source code files

This release also attempts to build on the jverne/nqc copy, which was maintained to keep NQC building and running on OS X and BSD.

For bug reports about this fork of NQC, please file a GitHub Issue for this project.

The original README from the NQC project follows.


NQC ReadMe

If you have a problem, PLEASE CHECK THE FAQ:

Send bug reports to [email protected]. Be sure to include details about what platform you are running nqc on and a sample file that demonstrates the bug if possible.

For updates and additional documentation, visit the NQC Web Site

Note to Windows Users

NQC is a command line based tool - normally you run it by typing an appropriate command into an MS-DOS window. There is no GUI for it and if you double-click the nqc.exe file an MS-DOS console will be created for you, NQC will run within it, then since NQC finishes almost immediately, the entire window will disappear.

Some people prefer command line based tools because they allow you to use the text editor of your choice, etc. It also makes for identical behavior under Windows, Mac, and Linux. In order to use the command line version of NQC you'll need to do two things:

  1. Use some sort of text editor (such as Notepad) to edit and save a source file for NQC to compile.

  2. From an MS-DOS window type the appropriate NQC command. Its usually best to either put all of your programs and nqc.exe in the same directory, or make sure the directory containing NQC is in your command path.

If any of the above seem either too confusing or too tedious, then you may want to try the BricxCC which provides a familiar Windows style GUI on top of the standard NQC compiler. You can download BricxCC here:

http://bricxcc.sourceforge.net/

Getting started

Download the appropriate compiler (nqc or nqc.exe) and put it where your shell can find it as a command.

The IR tower should be connected to your modem port (macintosh) or COM1 (Win32/Linux). The IR tower should be set for "near" mode (small triangle). The RCX should also be set for this mode, and firmware must already be downloaded.

Compile and download the test file using the following command line:

`nqc -d test.nqc

The test program assumes there's a motor on output A and a touch sensor on input 1. It turns on the motor and waits for the switch to be pressed, then it turns off the motor and plays a sound.

If you are using a USB tower or a different serial port you will need to specify the port either by adding a -Sx option (where x is the name of the port) to the command line or by setting the RCX_PORT environment variable.

Here are some examples:

USB tower (where supported) nqc -Susb -d test.nqc

Win32 COM2 port: set RCX_PORT=COM2

Win32 USB port: set RCX_PORT=usb

Linux: The syntax for setting environment variables is shell specific. By default nqcc uses "/dev/ttyS0" as the device name for the serial port. If you are using the second serial port, then "/dev/ttyS1" should work. Other device drivers may or may not work depending on if they implement the expected ioctl's to setup the baud rate, parity, etc.

nqc's People

Contributors

jverne avatar mesheets avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

nqc's Issues

TCP Support for Non-Linux Platforms

TCP support was added for the Linux build (e.g. rcxlib/RCX_TcpPipe_linux.cpp); extend this capability to other platforms, including Windows and Mac OS.

Windows Builds

The Makefile does not appear to reference a Windows build, and platform-specific files such as rcxlib/RCX_USBTowerPipe_win.cpp do not appear to be included in the build.

Also see the file "PORTING" for additional details.

Provide a Homebrew tap for macOS and Linux

I made my own Homebrew tap using jverne/nqc so that you can install nqc on macOS by typing:

brew install davidperrenoud/nqc/nqc

This will download the compiled version (bottle) on macOS 12 Intel and compile it from source on other architecture such as ARM or macOS versions.

You could provide the same functionality with the following formula:

class Nqc < Formula
  desc "Programming language for LEGO MINDSTORMS RCX, CyberMaster and Scout"
  homepage "https://bricxcc.sourceforge.net/nqc/"
  url "https://github.com/BrickBot/nqc/archive/refs/tags/v3.1-r6.tar.gz"
  version "3.1r6"
  sha256 "24aaa060f438606965ce17986af2e3e91ea9ccba7ffb4687ee6f89f3cd4ee585"
  license "MPL-2.0"

  def install
    ENV.deparallelize
    system "make", "install", "PREFIX=#{prefix}", "MANDIR=#{man}/man1"
  end

  test do
    system "#{bin}/nqc", "-help"
  end
end

As your repository is compatible with Linux, you do not need to add depends_on :macos.

You can configure your repository to automatically upload macOS 12 Intel and Ubuntu 22.04 bottles with the following guide:
https://brew.sh/2020/11/18/homebrew-tap-with-bottles-uploaded-to-github-releases/

Other architectures are only available in homebrew-core but they do not allow repositories with less than 75 stars.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.