Um exemplo de css para usar no GitBook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Note: We do not recommend using SSH to access a UniFi OS Console. | |
If you must use SSH to access a UniFi OS Console, you will need to enable SSH first: | |
Go to unifi.ui.com or enter the console’s IP address into your web browser. | |
Navigate to the UniFi OS System Settings > Advanced menu. | |
Enable the SSH toggle and enter an SSH password directly below. | |
To SSH into your device, run the following command in your terminal of choice (PowerShell or PuTTY on Windows, Terminal on Linux/mac): | |
ssh root@<ip-address> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Verilog Simulator checker by predefined macro. | |
* | |
* Copyright (C) 2017 MURAMATSU Atsushi <[email protected]> | |
* | |
* Permission is hereby granted, free of charge, to any person | |
* obtaining a copy of this software and associated documentation files | |
* (the "Software"), to deal in the Software without restriction, | |
* including without limitation the rights to use, copy, modify, merge, | |
* publish, distribute, sublicense, and/or sell copies of the Software, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**************************************************************************** | |
** | |
** Copyright (C) 2016 The Qt Company Ltd. | |
** Contact: https://www.qt.io/licensing/ | |
** | |
** This file is part of the examples of the Qt Toolkit. | |
** | |
** $QT_BEGIN_LICENSE:BSD$ | |
** Commercial License Usage | |
** Licensees holding valid commercial Qt licenses may use this file in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image | |
import sys | |
import os | |
n = len(sys.argv) | |
print(n) | |
if (n < 2) or (n > 3): | |
print("Use: python convert.py imagefile.ext memfile.hex .\n") | |
exit(1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-07-26T12:45:38.456Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;CORDIC Degrees to SIN COS (As Used On Youtube http://www.youtube.com/watch?v=Ze4UnE8R4FM) | |
;20x2 OLED display | |
;Craig Webster (IXIBA) | |
;Melboune Australia | |
;Updated 18/2/2014 | |
;Found this usefull? | |
;Bitcoin: 1LqDCrj8QAUjACnjRNEw8vq3T9p2R5k5RW |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Goertzel Algorithm | |
* http://cms.edn.com/uploads/SourceCode/09banks.txt | |
*/ | |
#define PI 3.141592653589793 | |
#include <stdio.h> | |
#include <math.h> | |
#define FLOATING float |
(Tested with Quartus 16 and Verilator 3.912)
-
Assign a value to an enumerated type without specifying width:
typedef enum logic[3:0] { FOO = 0, BAR = 1 } my_enum_t;
Common steps :
- Install MSYS2-x86_64
- At the end of the installation, run it (either automatically or manually)