Les Partages de Memiks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 23 / 155
[Nix-dev] drone and nix (sort of solved) https://nixos.org/nix-dev/2017-June/023903.html
Mon Jan 27 08:23:35 2020 archive.org
QRCode

Hi all, I while ago here I asked about using nix with drone.io (a CI system which uses docker), to deal with push based tests. I previously reported back with a solution with gitlab, but I did end up with a workable (not perfect) solution for drone. On the 'drone agent' machine run this once: # docker volume create nix # docker run --rm -v nix:/newnix nixos/nix cp -a /nix/store /nix/var /newnix in the .drone.yml files: pipeline: build: image: nixos/nix commands: ... volumes: - nix:/nix/ And whenever you want to update nixchannel: # docker run -v nix:/nix/ --rm -ti nixos/nix nix-channel --update This will share the /nix directory with every build, so rebuild (and downloads!) are kept to a minimum. Maybe it helps someone. Thanks! Harmen

Gestion de paquets et DevOps avec Nix, tour d’horizon sur un cas concret https://linuxfr.org/news/gestion-de-paquets-et-devops-avec-nix-tour-d-horizon-sur-un-cas-concret
Mon Jan 27 08:18:05 2020 archive.org
QRCode
thumbnail

L'actualité du Logiciel Libre et de Linux, sur un site francophone contributif géré par une équipe bénévole par et pour des libristes enthousiastes

Raspberry Pi and OpenOCD – Lean2 https://iosoft.blog/2019/01/28/raspberry-pi-openocd/
Sat Jan 25 16:50:49 2020 archive.org
QRCode
thumbnail

rpi2.cfg: OpenOCD interface on RPi v2+ # Use RPi GPIO pins interface bcm2835gpio # Base address of I/O port bcm2835gpio_peripheral_base 0x3F000000 # Clock scaling bcm2835gpio_speed_coeffs 146203 36 # SWD swclk swdio # Header pin numbers 22 18 bcm2835gpio_swd_nums 25 24 # JTAG tck tms tdi tdo # Header pin numbers 22 18 16 15 bcm2835gpio_jtag_nums 25 24 23 22

gpio - Rpi3b+ to Rpi3b+ jtag/SWD connection and OpenOCD - Raspberry Pi Stack Exchange https://raspberrypi.stackexchange.com/questions/91934/rpi3b-to-rpi3b-jtag-swd-connection-and-openocd
Sat Jan 25 09:52:30 2020 archive.org
QRCode
thumbnail

I'd like to hook together two Raspberry pi 3b+ to use jtag

InvisibleUp - Articles - Why I Procrastinate https://invisibleup.com/articles/27/
Fri Jan 24 08:28:03 2020 archive.org
QRCode
thumbnail
Debugger for Micropython - Page 2 - MicroPython Forum https://forum.micropython.org/viewtopic.php?f=2&t=4293&sid=c1582e46dc0f53ddaaf480f2e0808056&start=10
Thu Jan 23 17:53:53 2020 archive.org
QRCode
Debugger Setup with GDB + OpenOCD in Visual Studio Code https://www.justinmklam.com/posts/2017/10/vscode-debugger-setup/
Thu Jan 23 17:25:06 2020 archive.org
QRCode
thumbnail
Buger's blog - black-magic-probe https://buger.dread.cz/tag/black-magic-probe.html
Thu Jan 23 12:52:32 2020 archive.org
QRCode
thumbnail
How to convert an STM32F103C8T6 into a Black Magic Probe - MicroController Electronics https://microcontrollerelectronics.com/how-to-convert-an-stm32f103c8t6-into-a-black-magic-probe/
Thu Jan 23 12:09:41 2020 archive.org
QRCode
thumbnail
Problem Flashing nrf52 chip using Openocd - Stack Overflow https://stackoverflow.com/questions/52308978/problem-flashing-nrf52-chip-using-openocd
Wed Jan 22 21:23:40 2020 archive.org
QRCode
thumbnail

I have a custom nrf52 chip on a pcb with swd pins exposed. I have cloned and installed the latest openocd from https://github.com/ntfreak/openocd. The latest version includes all the latest pathes ...

Programming nRF52 with OpenOCD - Nordic DevZone https://devzone.nordicsemi.com/f/nordic-q-a/29029/programming-nrf52-with-openocd
Wed Jan 22 19:40:15 2020 archive.org
QRCode
thumbnail
Build and Run OpenOCD on Windows 10 with Cygwin https://mindchasers.com/dev/openocd-darsena-windows
Wed Jan 22 16:41:19 2020 archive.org
QRCode
thumbnail
pcbreflux: nRF52832: first steps with ST-Link V2 and openocd https://pcbreflux.blogspot.com/2016/09/nrf52832-first-steps-with-st-link-v2.html
Wed Jan 22 16:37:06 2020 archive.org
QRCode
thumbnail
STLINK-V2 PARA PROGRAMAR NINA B112 https://stlinkv2-nina-b112.blogspot.com/2019/07/programando-nina-b112-com-st-link-v2-o.html?m=1
Wed Jan 22 16:21:02 2020 archive.org
QRCode
thumbnail
micooke/arduino-nRF5-smartwatches: Smartwatch variants for sandeepmistry's Nordic Semiconductor nRF5 core https://github.com/micooke/arduino-nRF5-smartwatches
Wed Jan 22 13:38:16 2020 archive.org
QRCode

To share my experience with the nRF52832.
I was unable to disable the read protection / flash lock with a BMP or ST-Link V2, but i was successful with a J-Link.

When nRF52832 chip is read protected / locked, the first step is to try:
nrfjprog –recover -f nrf52

This performs the same task as:

Jlink -if swd -device nrf52
J-Link>SWDSelect
J-Link>SWDWriteDP 1, 0x50000000
J-Link>SWDWriteDP 2, 0x01000000
J-Link>SWDWriteAP 1, 0x00000001

Wait until AP 2 is 0, and the operation is complete
J-Link>SWDReadAP 2

If two successive reads from AP 3 produce 0, then 1 then protection is disabled
J-Link>SWDReadAP 3
J-Link>SWDReadAP 3

Tested with JLink v6.20b

Nordic Semiconductor Infocenter https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.sdk5.v15.2.0%2Flib_bootloader.html
Sun Jan 19 07:21:28 2020 archive.org
QRCode
thumbnail
The C4 model for visualising software architecture https://c4model.com/
Fri Jan 17 13:19:14 2020 archive.org
QRCode
thumbnail
C4 model
Document architectures by using the C4 model - IBM Garage Practices https://www.ibm.com/garage/method/practices/code/c4-model-for-software-architecture/
Fri Jan 17 13:18:04 2020 archive.org
QRCode
thumbnail
c4 model by IBM
AliOS-Things/drv_acc_bosch_bma421.c at 60b3e338cf781c9724d1bfb1806af24c46e9d243 · chipsi007/AliOS-Things https://github.com/chipsi007/AliOS-Things/blob/60b3e338cf781c9724d1bfb1806af24c46e9d243/device/sensor/drv/drv_acc_bosch_bma421.c
Wed Jan 15 16:56:59 2020 archive.org
QRCode
thumbnail
pinetime
Stollen de Dresde à la pâte d'amandes : Recette de Stollen de Dresde à la pâte d'amandes - Marmiton https://www.marmiton.org/recettes/recette_stollen-de-dresde-a-la-pate-d-amandes_35772.aspx
Tue Jan 14 08:36:16 2020 archive.org
QRCode

farine, levure, sucre, lait, beurre, beurre, sel, citron, citron confit, orange, amandes, raisins secs, raisin, rhum, sucre en poudre...

page 23 / 155
4933 links, including 1839 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn